使用 OData4J 检索 OData 数据时出错
我正在尝试使用 OData4J 从 StackOverflow OData 服务检索用户列表(到Android 2.1 设备),但无法正常工作。
public static Enumerable<OEntity> getUserInfo() {
ODataConsumer c = ODataConsumer.create("https://odata.sqlazurelabs.com/OData.svc/v0.1/rp1uiewita/StackOverflow/");
return c.getEntities("Users").execute();
我认为它无法从 URL 检索数据。
有什么想法吗?我的代码有什么问题吗?
谢谢。
I am trying to use OData4J to retrieve a list of Users from the StackOverflow OData service (onto an Android 2.1 device), but it isn't working.
public static Enumerable<OEntity> getUserInfo() {
ODataConsumer c = ODataConsumer.create("https://odata.sqlazurelabs.com/OData.svc/v0.1/rp1uiewita/StackOverflow/");
return c.getEntities("Users").execute();
I think it is unable to retrieve data from the URL.
Any ideas why this would be? Is there anything wrong with my code?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现这是因为我缺少清单文件中的安全性:
添加后它现在可以工作了。
I found out that it was because I was missing the security in the manifest file:
After adding that it now works.