مطلوب تفويض
إنشاء ملف شخصي جديد (الملف الشخصي). جرِّب ذلك الآن أو اطّلِع على مثال.
بالإضافة إلى المعلّمات العادية، تدعم هذه الطريقة المعلّمات المدرجة في جدول المعلّمات.
طلب
طلب HTTP
POST https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles
المَعلمات
اسم المعلَمة | القيمة | الوصف |
---|---|---|
معلّمات المسار | ||
accountId |
string |
رقم تعريف الحساب لإنشاء ملف شخصي له. |
webPropertyId |
string |
معرّف الموقع الإلكتروني لإنشاء الملف الشخصي له. |
التفويض
ويتطلب هذا الطلب الحصول على تفويض من النطاق التالي (مزيد من المعلومات حول المصادقة والتفويض).
النطاق |
---|
https://www.googleapis.com/auth/analytics.edit |
نص الطلب
في نص الطلب، قدِّم مورد.management.profile.
الإجابة
وإذا تم ذلك بنجاح، تعرض هذه الطريقة مورد.management في نص الاستجابة.
أمثلة
ملاحظة: إنّ الأمثلة المرتبطة بالرموز والمتوفرة لهذه الطريقة لا تمثّل كل لغات البرمجة المتوافقة (يُرجى مراجعة صفحة مكتبات البرامج للاطّلاع على قائمة باللغات المتوافقة).
Java
يستخدم مكتبة برامج Java.
/* * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Developer Guide for details. */ /* * This request creates a new View (Profile). */ // Construct the body of the request and set its properties. Profile body = new Profile(); body.setName("eCommerce View (Profile)"); body.setECommerceTracking(true); try { analytics.management().profiles().insert("123456", "UA-123456-1", body).execute(); } catch (GoogleJsonResponseException e) { System.err.println("There was a service error: " + e.getDetails().getCode() + " : " + e.getDetails().getMessage()); }
PHP
استخدام مكتبة برامج PHP.
/** * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Dev Guide for details. */ /** * This request creates a new view (profile). */ // Construct the body of the request and set its properties. $profile = new Google_Service_Analytics_Profile(); $profile->setName('eCommerce View'); $profile->setECommerceTracking(True); try { $analytics->management_profiles->insert('123456', 'UA-123456-1', $profile); } 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(); }
Python
استخدام مكتبة برامج Python.
# Note: This code assumes you have an authorized Analytics service object. # See the View (Profile) Developer Guide for details. # This request creates a new View (Profile). try: analytics.management().profiles().insert( accountId='123456', webPropertyId='UA-123456-1', body={ 'name': 'eCommerce View (Profile)', 'eCommerceTracking': True, } ).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))
JavaScript
استخدام مكتبة عميل JavaScript.
/* * Note: This code assumes you have an authorized Analytics client object. * See the View (Profiles) Developer Guide for details. */ /* * This request creates a new View (Profile). */ function insertView() { var request = gapi.client.analytics.management.profiles.insert( { 'accountId': '123456', 'webPropertyId': 'UA-123456-1', 'resource': { 'name': 'eCommerce View (Profile)', 'eCommerceTracking': true } }); request.execute(function (response) { // Handle the response. }); }
جرِّب هذه الميزة الآن.
استخدِم "مستكشف واجهات برمجة التطبيقات" أدناه لطلب هذه الطريقة في البيانات المباشرة والاطّلاع على الاستجابة. يمكنك بدلاً من ذلك تجربة المستكشف المستقل.