0

我想制作一个应用程序来读取我在 Adsense 上的收入。我在 Google 上制作了一个应用程序,并生成了一个 URL 来登录该应用程序。

https://accounts.google.com/o/oauth2/auth?from_login=0&response_type=code&scope=https://www.googleapis.com/auth/adsense&redirect_uri=xxxxxxxx&access_type=offline&as=-415b671ff3966dc2&pli=1&client_id=xxxxxxxxxxx&authuser=0&hl=en

但是当用户登录应用程序并单击“允许”时,输出没有访问令牌只有“代码”。我还想知道是否有在 android 上使用 google OAuth api 的示例,因为我尝试使用它但失败了。

4

2 回答 2

1

有一个适用于 Android 的 AdSense 管理 API 示例: https ://github.com/googleads/googleads-adsense-examples/tree/master/android

它使用 Google Play 服务来获取设备上的帐户列表,并使用 Java 的 Google 客户端库来发出请求。

于 2014-06-06T09:50:48.120 回答
0

是的,在调用任何 Google 的 API 之前,您需要先进行 OAuth 身份验证,从而获得有效的令牌。

检查一下以了解如何:

http://developer.android.com/training/id-auth/authenticate.html

于 2013-09-10T10:40:36.320 回答