उन प्रयोगों की सूची बनाता है जिन्हें उपयोगकर्ता ऐक्सेस कर सकता है. एक उदाहरण देखें.
यह तरीका स्टैंडर्ड पैरामीटर के अलावा, पैरामीटर टेबल में दिए गए पैरामीटर के साथ भी काम करता है.
अनुरोध करें
एचटीटीपी अनुरोध
GET https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles/profileId/experiments
पैरामीटर
पैरामीटर का नाम | वैल्यू | जानकारी |
---|---|---|
पाथ पैरामीटर | ||
accountId |
string |
वह खाता आईडी जिसके लिए प्रयोग वापस पाना है. |
profileId |
string |
प्रयोग वापस पाने के लिए (प्रोफ़ाइल) आईडी देखें. |
webPropertyId |
string |
प्रयोग वापस पाने के लिए वेब प्रॉपर्टी आईडी. |
क्वेरी के वैकल्पिक पैरामीटर | ||
max-results |
integer |
इस जवाब में शामिल करने के लिए प्रयोगों की ज़्यादा से ज़्यादा संख्या. |
start-index |
integer |
फिर से हासिल करने के लिए किए गए पहले प्रयोग का इंडेक्स. इस पैरामीटर का इस्तेमाल, ज़्यादा से ज़्यादा नतीजों वाले पैरामीटर के साथ-साथ, पेजों को क्रम में लगाने के तरीके के तौर पर करें. |
अनुमति देना
इस अनुरोध के लिए, इनमें से कम से कम किसी एक दायरे की अनुमति ज़रूरी है (पुष्टि करने और अनुमति देने के बारे में ज़्यादा पढ़ें).
अनुमति देने का |
---|
https://www.googleapis.com/auth/analytics |
https://www.googleapis.com/auth/analytics.edit |
https://www.googleapis.com/auth/analytics.readonly |
अनुरोध का मुख्य भाग
इस तरीके से अनुरोध का मुख्य हिस्सा न दें.
जवाब
अगर इस तरीके का इस्तेमाल किया जाता है, तो जवाब के मुख्य हिस्से में यह स्ट्रक्चर मौजूद होता है:
{ "kind": "analytics#experiments", "username": string, "totalResults": integer, "startIndex": integer, "itemsPerPage": integer, "previousLink": string, "nextLink": string, "items": [ management.experiments Resource ] }
प्रॉपर्टी का नाम | वैल्यू | जानकारी | नोट |
---|---|---|---|
kind |
string |
संग्रह का प्रकार. | |
username |
string |
पुष्टि किए गए उपयोगकर्ता का ईमेल आईडी | |
totalResults |
integer |
क्वेरी के लिए कुल नतीजे, चाहे उन नतीजों की संख्या कितनी भी हो. | |
startIndex |
integer |
रिसॉर्स का शुरुआती इंडेक्स. यह डिफ़ॉल्ट रूप से एक होता है या किसी और तरीके से, शुरुआती इंडेक्स क्वेरी पैरामीटर से तय किया जाता है. | |
itemsPerPage |
integer |
जवाब की संख्या ज़्यादा से ज़्यादा इतने संसाधन हो सकते हैं कि रिस्पॉन्स में कितने संसाधन शामिल हैं. इसकी वैल्यू 1 से 1,000 के बीच होती है. इसमें डिफ़ॉल्ट रूप से 1,000 की वैल्यू होती है. इसके अलावा, ज़्यादा से ज़्यादा नतीजों वाले क्वेरी पैरामीटर से तय की जाती है. | |
previousLink |
string |
प्रयोग के इस संग्रह के लिए, पिछले पेज का लिंक. | |
nextLink |
string |
इस प्रयोग के संग्रह के लिए अगले पेज का लिंक. | |
items[] |
list |
प्रयोगों की सूची. |
उदाहरण
ध्यान दें: इस तरीके के लिए दिए गए कोड के उदाहरणों में इसके साथ काम करने वाली सभी प्रोग्रामिंग भाषाएं नहीं दिखाई गई हैं (इसके साथ काम करने वाली भाषाओं की सूची के लिए क्लाइंट लाइब्रेरी वाला पेज देखें).
Java
Java क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/* * Note: This code assumes you have an authorized Analytics service object. * See the Experiments Developer Guide for details. */ /* * Example #1 * This example requests a list of all Experiments for the authorized user. */ try { Experiments experiments = analytics.management().experiments().list("123456", "UA-123456-1", "7654321").execute(); } catch (GoogleJsonResponseException e) { System.err.println("There was a service error: " + e.getDetails().getCode() + " : " + e.getDetails().getMessage()); } /* * Example 2 * The results of the list method are stored in the experiments object. * The following code shows how to iterate through them. */ for (Experiment experiment : experiments.getItems()) { System.out.println("Experiment Id = " + experiment.getId()); System.out.println("Experiment Name = " + experiment.getName()); System.out.println("Experiment Status = " + experiment.getStatus()); // Loop through the variations. for (Variations variations : experiment.getVariations()) { System.out.println("Variation Name = " + variations.getName()); System.out.println("Variation Status = " + variations.getStatus()); System.out.println("Variation Won = " + variations.getWon() + "\n"); } }
PHP
PHP क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/** * Note: This code assumes you have an authorized Analytics service object. * See the Experiments Developer Guide for details. */ /** * Example #1: * Requests a list of all Experiments for the authorized user. */ try { $experiments = $analytics->management_experiments ->listManagementExperiments('123456', 'UA-123456-1', '7654321'); } catch (apiServiceException $e) { print 'There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); } catch (apiException $e) { print 'There was a general API error ' . $e->getCode() . ':' . $e->getMessage(); } /** * Example #2: * The results of the list method are stored in the experiments object. * The following code shows how to iterate through them. */ foreach ($experiments->getItems() as $experiment) { $html = <<<HTML <pre> Experiment id = {$experiment->getId()} Experiment name = {$experiment->getName()} Experiment status = {$experiment->getStatus()} HTML; foreach ($experiment->getVariations() as $variation) { $html .= <<< HTML Variation name = {$variation->getName()} Variation status = {$variation->getStatus()} Variation won = {$variation->getWon()} HTML; } $html .= '</pre>'; print $html; }
Python
Python क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
# Note: This code assumes you have an authorized Analytics service object. # See the Experiments Dev Guide for details. # Example #1: # Requests a list of all experiments for the authorized user. try: experiments = analytics.management().experiments().list( accountId='123456', webPropertyId='UA-123456-1', profileId='98765432' ).execute() except TypeError, error: # Handle errors in constructing a query. print 'There was an error in constructing your query : %s' % error except HttpError, error: # Handle API errors. print ('There was an API error : %s : %s' % (error.resp.status, error.resp.reason)) # Example #2: # The results of the list method are stored in the experiments object. # The following code shows how to iterate through them. for experiment in experiments.get('items', []): print 'Experiment Id = %s' % experiment.get('id') print 'Experiment Name = %s' % experiment.get('name') print 'Experiment Status = %s\n' % experiment.get('status') variations = experiment.get('variations', []) for variation in variations: print 'Variation Name = %s' % variation.get('name') print 'Variation Status = %s' % variation.get('status') print 'Variation Won = %s' % variation.get('won')
JavaScript
JavaScript क्लाइंट लाइब्रेरी का इस्तेमाल करता है.
/* * Note: This code assumes you have an authorized Analytics client object. * See the Experiments Developer Guide for details. */ /* * Example 1: * Requests a list of all experiments for the authorized user. */ function listExperiements() { var request = gapi.client.analytics.management.experiments.list({ 'accountId': '123456', 'webPropertyId': 'UA-123456-1', 'profileId': '7654321' }); request.execute(printExperiments); } /* * Example 2: * The results of the list method are passed as the results object. * The following code shows how to iterate through them. */ function printExperiments(results) { if (results && !results.error) { var experiments = results.items; for (var i = 0, experiment; experiment = experiments[i]; i++) { console.log('Experiment Id: ' + experiment.id); console.log('Experiment Kind: ' + experiment.kind); console.log('Experiment Name: ' + experiment.name); // Iterate through the variations. var variations = experiment.variations; if (variations) { for (var j = 0, variation; variation = variations[j]; j++) { console.log('Variation Name: ' + variation.name); console.log('Variation Status: ' + variation.status); console.log('Variation URL: ' + variation.url); console.log('Variation Won: ' + variation.won); } } } } }