예제에서는
사용자를 대신하여 Google Ads 계정에 액세스할 수 있는 OAuth2 사용자 인증 정보가 필요합니다.
Paste this URL in your browser:
https://accounts.google.com/o/oauth2/v2/auth?response_type=code&access_type=offline&client_id=...
시크릿 브라우저 세션 또는 시크릿 창에서 URL로 이동합니다.
Google Ads에 액세스할 때 사용하는 것과 동일한 Google 계정으로 로그인합니다. 클릭
OAuth2 동의 화면에서 계속을 클릭합니다.
그러면 페이지가
인증에 성공했습니다.
갱신 토큰을 가져왔습니다. 자세한 내용은 콘솔 출력을 확인하세요.
참조하세요.
예시를 실행 중이던 콘솔로 돌아갑니다. 예시는
완료되고 갱신 토큰과 몇 가지 지침을 표시해야 합니다.
그 뒤에 클라이언트 라이브러리를 구성하는 데 필요한 속성을 입력합니다.
Your refresh token is: 1/Yw**********
Copy the text below into a file named "google_ads_php.ini" in your home directory, and replace "INSERT_DEVELOPER_TOKEN_HERE" with your developer token:
[GOOGLE_ADS]
developerToken = "INSERT_DEVELOPER_TOKEN_HERE"
[OAUTH2]
Copy the following lines to your 'google_ads_php.ini' file:
clientId = "***********************apps.googleusercontent.com"
clientSecret = "****"
refreshToken = "****"
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-10-09(UTC)"],[[["This guide explains how to set up OAuth2 for Google Ads API access using your own credentials through either a desktop or web flow."],["You'll need to create OAuth2 credentials by configuring a Google API Console project and noting your client ID and secret."],["The setup involves running a client library example that guides you through an authorization process using your Google account."],["Upon successful authorization, you'll receive a refresh token and instructions to configure your client library with the necessary properties."]]],[]]