0

在我的应用程序中,我必须将 Vimeo 帐户中可用的视频集成到我的应用程序中。这样用户就可以浏览视频并播放它们,无需上传视频。我已经获得了客户端密钥和密钥。你能帮我完成剩下的程序吗?我已经阅读了那里的文档,但没有理解它。我要检索的视频不是公开视频。我想检索属于特定用户帐户的视频

4

2 回答 2

1

或者您可以通过网络视图播放视频

 NSMutableString *html = [[NSMutableString alloc] initWithCapacity:1] ;
[html appendString:@"<html><head>"];
[html appendString:@"<style type=\"text/css\">"];
[html appendString:@"body {"];
[html appendString:@"background-color: transparent;"];
[html appendString:@"color: white;"];
[html appendString:@"}"];
[html appendString:@"</style>"];
[html appendString:@"</head><body style=\"margin:0\">"];
[html appendString:@"<iframe src=\"//player.vimeo.com/video/84403700?autoplay=1&amp;loop=1\" width=\"1024\" height=\"768\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>"];
[html appendString:@"</body></html>"];


[viewWeb loadHTMLString:html baseURL:urlMovie];
于 2014-03-21T20:17:40.350 回答
0

我在尝试了不同的可用库后解决了它。GMOAuth、OAuthConsumer、GTMAuth 这些都是 OAuth 的好库。但是如果你想专门为 Vimeo 使用 OAuth,那么最好使用 OAuthConsumer,因为它非常简单并且使用它你可以轻松地完成 Vimeo 身份验证中的所有步骤,但如果你想要 twitter 或其他网络,其他库很有用。

完成 OAuth 步骤并获取 OAuthVerifier 和令牌后,您必须遵循与获取令牌相同的方法,但将 url 替换为您想要使用的高级 api 方法列表中可用的方法。如果您想了解方法头和必须传递的参数,请参阅 Vimeo 游乐场。

于 2013-08-30T09:35:23.133 回答