Google Oauth按url用于youtube api

时间:2019-03-07 05:26:28

标签: java android youtube youtube-api

我正在创建一个应用来测试Subscription Insert方法。在应用程序中,我喜欢从url进行身份验证。就像我将google登录页面放在webview中一样。我听说了一种可以从url访问令牌的方法。我不知道我怎么能得到它。请告诉我这个过程,并指导我如何实现它。

package com.google.api.client.auth.oauth;

import com.google.api.client.http.GenericUrl;
import com.google.api.client.util.Beta;
import com.google.api.client.util.Key;

@Beta
public class OAuthAuthorizeTemporaryTokenUrl
extends GenericUrl {
    @Key(value="oauth_token")
    public String temporaryToken;

    public OAuthAuthorizeTemporaryTokenUrl(String string) {
        super(string);
    }
}

1 个答案:

答案 0 :(得分:1)

请访问此网站:Obtaining authorization credentials

它是URL的最后一部分: see example here