使用 Java 和 Scribe 的 Vimeo 搜索 API
在其 API Vimeo 工程师中声称我们应该能够在没有访问令牌的情况下进行搜索,我花了几个小时,不幸的是无法让它工作,我不确定我是否做错了什么,所以如果您已经完成,请提供帮助这个之前。
OAuthService service = new ServiceBuilder().provider(VimeoApi.class).apiKey(consumerString).apiSecret(consumerSecret).build();
OAuthRequest myrequest = new OAuthRequest(Verb.GET,"http://vimeo.com/api/rest/v2format=json&method=vimeo.videos.search&query=fun");
Token mytoken = new Token("", consumerSecret);
service.signRequest(mytoken, myrequest);
Response response = myrequest.send();
谢谢
In its API Vimeo engineers are claiming that we should be able to search without access token, I have spent hours and unfortunately cannot get it to work, I'm not sure if I'm doing something wrong, So please help if you have done this before.
OAuthService service = new ServiceBuilder().provider(VimeoApi.class).apiKey(consumerString).apiSecret(consumerSecret).build();
OAuthRequest myrequest = new OAuthRequest(Verb.GET,"http://vimeo.com/api/rest/v2format=json&method=vimeo.videos.search&query=fun");
Token mytoken = new Token("", consumerSecret);
service.signRequest(mytoken, myrequest);
Response response = myrequest.send();
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
改变这个:
为此:
change this:
for this: