我正在尝试使用Google驱动程序的API来开发一个独立的Java应用程序(仅使用java SE)。为此,我需要使用Oauth2.0获取访问令牌。为了获取访问令牌,我编写了以下代码:
package Drive;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import static Drive.Constants.*;
public class Test {
public static void main(String[] args) throws IOException {
String url=OAuth2URL+"redirect_uri=https://localhost/"+"&"+"client_id="+CLIENTID+"&"+"scope="+SCOPE+"&"+
"access_type=offline&"+"response_type=code";
System.out.println("URL is :"+url);
HttpClient httpClient= new DefaultHttpClient();
HttpGet httpGet=new HttpGet(url);
HttpResponse response=httpClient.execute(httpGet);
if(response.getEntity().getContent()!=null) {
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String str = null;
while ((str = reader.readLine()) != null) {
System.out.println(str);
}
}
}
}
我已将我的凭据和oauth2.0网址放在常量字符串中。我的问题是如何 我可以将此API调用的响应收到我的应用程序吗?我需要分叉吗? 在特定端口上监听进程以获得响应?
答案 0 :(得分:2)
redirect_uri
应该在Google控制台上注册(在您获得client_id
的位置),并且您应该将此网址公开为真正的http / s端点。
有关详情,请参阅第2步:https://developers.google.com/identity/protocols/OAuth2InstalledApp