作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标:
我正在使用 GWT 并尝试使用 RestyGWT 客户端调用现有的 Twitter REST 服务
问题:
我没有收到对“https://api.twitter.com/1.1/statuses/mentions_timeline.json ”的 GET 请求的响应
我尝试过的事情:
我查看了 RestyGWT 的文档,但找不到有关如何调用第三方 REST 服务的具体示例。尝试使用纯文本返回类型调用 REST 服务,同样的问题。从根本上讲,我一定做错了什么。
代码:
这是我的 onModuleLoad:
public void onModuleLoad() {
Resource r = new Resource("https://api.twitter.com/1.1/statuses/mentions_timeline.json");
r.get().send(new JsonCallback() {
@Override
public void onSuccess(Method method, JSONValue response) {
System.out.println("Twitter response:\tYES");
}
@Override
public void onFailure(Method method, Throwable exception) {
System.out.println("Twitter response:\tNO");
System.out.println("Exception:\t\t"+exception.toString());
System.out.println("Exception Message:\t"+exception.getMessage());
System.out.println("Status code:\t\t"+method.getResponse().getStatusCode() );
}
});
}
输出:
GWT MODULE LOADED
Twitter response: NO
Exception: org.fusesource.restygwt.client.FailedStatusCodeException:
Exception Message:
Status code: 0
最佳答案
如果您正在访问不属于您的远程服务,则通常必须发送 JSONP 请求才能解决同源策略。因此,请尝试使用 r.jsonp()
而不是 r.get()
。
关于java - RestyGWT 和 GWT 集成 : Cannot GET Resource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19188195/
我是一名优秀的程序员,十分优秀!