Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 iOS 应用程序中,我正在使用 Vimeo api,当我尝试向视频添加评论时,它会给出一个错误,提示用户需要写入权限,授予读取权限。以前我使用以下网址进行授权
http://vimeo.com/oauth/authorize
我把它改成
http://vimeo.com/oauth/authorize?permission=write
问题仍然存在,是授权 url 好还是我必须提供任何其他参数。我正在为 OAuth 使用 OAConsumer 库。
经过一些尝试和错误,我得到了解决方案。我们必须使用 OAMutableRequest 的 set parameters 方法将其作为附加参数,而不是在 url 中指定 permissions=write。