מקורות למודעות
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
AdMob API מאפשר להציג מקורות של מודעות בתהליך בחירת הרשת
באופן פרוגרמטי. צפייה
accounts.adSources.list
אפשר למצוא מידע נוסף בנושא.
בקשה באמצעות Curl
טוענים את קובץ הסודות של הלקוח ויוצרים הרשאה
פרטי הכניסה.
בפעם הראשונה שתבצעו את השלב הזה, תתבקשו לאשר
בקשה להרשאה בדפדפן. לפני האישור, צריך לוודא
מחוברים לחשבון Google שיש לו גישה ל-AdMob API. שלך
האפליקציה מורשית לגשת לנתונים בשם כל חשבון
שמחובר כרגע.
לצורך אימות והרשאה, מומלץ להשתמש
oauth2l, כלי שורת פקודה פשוט
עבודה עם Google OAuth 2.0. מתקינים את oauth2l ומפעילים את
הפקודה שלמטה, מחליפה את path_to_credentials_json בנתיב
לקובץ credentials.json
שמורידים במהלך הרישום של
של ענן. בהפעלה הראשונה, הפקודה תנחה אתכם לאורך
תהליך ההרשאה מסוג OAuth 2.0. בהפעלות הבאות מתבצע רענון של האסימון
באופן אוטומטי.
oauth2l header --json path_to_credentials_json --scope admob.readonly
הצגת רשימה של מקורות מודעות.
כדי לקבל מידע על מקור המודעות ב-AdMob, צריך להחליף את pub-XXXXXXXXXXXXXXXX
במזהה בעל האתר שלכם. לצפייה
הוראות לחיפוש
מזהה בעל האתר.
curl --http1.0 -X GET https://admob.googleapis.com/v1beta/accounts/pub-XXXXXXXXXXXXXXXX/adSources \
-H "$(oauth2l header --json path_to_credentials_json --scope admob.readonly)"
דוגמה לתגובה:
{
"adSources": [
{
"name": "accounts/pub-XXXXXXXXXXXXXXXX/adSources/5450213213286189855",
"adSourceId": "5450213213286189855",
"title": "AdMob Network",
}
]
}
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-31 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-31 (שעון UTC)."],[[["\u003cp\u003eThe AdMob API allows programmatic access to view mediation ad sources.\u003c/p\u003e\n"],["\u003cp\u003eAuthentication and authorization are handled using OAuth 2.0, preferably through the \u003ccode\u003eoauth2l\u003c/code\u003e tool.\u003c/p\u003e\n"],["\u003cp\u003eTo list ad sources, a request using \u003ccode\u003ecurl\u003c/code\u003e is made to the AdMob API endpoint, including your publisher ID and authorization credentials.\u003c/p\u003e\n"]]],[],null,["# Ad Sources\n\nThe AdMob API lets you view [mediation ad sources](/admob/api/v1/ad-sources-reference)\nprogrammatically. See\n[`accounts.adSources.list`](/admob/api/reference/rest/v1beta/accounts.adSources/list)\nfor additional information. \n\n### Request using Curl\n\n1. Load the [client secrets file](https://console.cloud.google.com/apis/credentials) and generate authorization\n credentials.\n\n The first time you perform this step you'll be asked to accept an\n authorization prompt in your browser. Before accepting, make sure you're\n signed in with a Google Account that has access to the AdMob API. Your\n app will be authorized to access data on behalf of whichever account is\n currently signed in.\n\n For authentication and authorization, we recommend using\n [oauth2l](//github.com/google/oauth2l), a simple command-line tool for\n working with Google OAuth 2.0. Install oauth2l and run the\n command below, replacing \u003cvar translate=\"no\"\u003epath_to_credentials_json\u003c/var\u003e with a path\n to a `credentials.json` file that you download when registering your\n cloud application. For the first run, the command walks you through the\n OAuth 2.0 authorization flow. Subsequent runs refresh the token\n automatically. \n\n ```\n oauth2l header --json path_to_credentials_json --scope admob.readonly\n ```\n2. List ad sources.\n\n Get AdMob ad source information by replacing \u003cvar translate=\"no\"\u003epub-XXXXXXXXXXXXXXXX\u003c/var\u003e\n with your publisher ID. See the\n [instructions](//support.google.com/admob/answer/2784578) on how to find\n your publisher ID. \n\n ```\n curl --http1.0 -X GET https://admob.googleapis.com/v1beta/accounts/pub-XXXXXXXXXXXXXXXX/adSources \\\n -H \"$(oauth2l header --json path_to_credentials_json --scope admob.readonly)\"\n ```\n\n Sample response: \n\n ```text\n {\n \"adSources\": [\n {\n \"name\": \"accounts/pub-XXXXXXXXXXXXXXXX/adSources/5450213213286189855\",\n \"adSourceId\": \"5450213213286189855\",\n \"title\": \"AdMob Network\",\n }\n ]\n }\n ```"]]