gpt4 book ai didi

java - 将 PicasawebService 与 GAE 结合使用时出错

转载 作者:行者123 更新时间:2023-12-01 04:17:17 25 4
gpt4 key购买 nike

我正在尝试从我的 GAE 应用程序连接到 picassa 网络相册。但我无法进行身份验证。

PicasawebService myService = new PicasawebService("myclub");
myService.setUserCredentials("username@gmail.com", "my_password");

我得到的错误是

com.google.gdata.util.AuthenticationException: Error connecting with login URI
at com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthTokenFactory.java:549)
at com.google.gdata.client.GoogleAuthTokenFactory.setUserCredentials(GoogleAuthTokenFactory.java:397)
at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:364)
at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:319)
at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:303)


Caused by: java.net.SocketTimeoutException: Timeout while fetching: https://www.google.com/accounts/ClientLogin
at com.google.appengine.api.urlfetch.URLFetchServiceImpl.fetch(URLFetchServiceImpl.java:52)
at com.google.apphosting.utils.security.urlfetch.URLFetchServiceStreamHandler$Connection.fetchResponse(URLFetchServiceStreamHandler.java:417)
at com.google.apphosting.utils.security.urlfetch.URLFetchServiceStreamHandler$Connection.getInputStream(URLFetchServiceStreamHandler.java:296)
at com.google.apphosting.utils.security.urlfetch.URLFetchServiceStreamHandler$Connection.getResponseCode(URLFetchServiceStreamHandler.java:149)
at com.google.gdata.client.GoogleAuthTokenFactory.makePostRequest(GoogleAuthTokenFactory.java:624)
at com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthTokenFactory.java:547)

有人遇到过这个问题吗?

最佳答案

尝试增加超时。我在照片上传时遇到了这种情况,但在身份验证时没有遇到这种情况。

我发现一张 500kb 的照片从我的开发应用引擎到 picacaweb 大约需要 17 秒,默认超时为 10 秒。通常,尽管读取响应超时,上传还是成功。最大值为 60 秒,因此如果需要的时间比此长,则需要采取不同的策略(上传/捕获超时/检查照片是否存在/读取元数据或相应地重新上传)。

PicasawebService.setConnectTimeout(60000);
PicasawebService.setReadTimeout(60000);

关于java - 将 PicasawebService 与 GAE 结合使用时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19320768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com