设置 x-callback url
我需要为 Soundcloud API 执行此操作,但我不知道这是关于什么或如何执行的。 Soundcloud API 开发人员网站上有一个表单,您可以在其中保存回调 URL,但我不确定应该在那里输入什么类型的信息。
有什么帮助吗?
I need to do this for the Soundcloud API and I have no idea what this is about or how to do it. There is a form on the Soundcloud API Developer website where you save your callback URL, but I'm not sure what sort of information I should input there.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这个回调 url 用于 oauth 身份验证,对吗?我需要对 twitter 做同样的事情,最终为我的应用程序设置了一个自定义 url 方案(即 appname://oauth)并使用它作为回调 url。
如果您想尝试此操作,请参阅本文介绍了如何通过自定义 URL 方案启动您的应用程序。专门针对 Twitter,您可以查看 jaanus 的帖子 一些实现细节和 github 项目。
虽然我还没有与 soundcloud 集成,但我确实发现他们有一个 Objective-C api,如果你还没有,你可能想检查一下 此处。
更新
所以我提到的是真的 - 您可以使用自定义 url 方案等来处理身份验证,但这并不是完全必需的。我发现这篇文章概述了两种身份验证方法 -第一个仅适用于 ios4,并且需要很少的代码。第二个应该在 3.x 上工作并使用我上面提到的自定义 url 方法(并概述了如何使用它进行身份验证)。
因此,为了一劳永逸地回答您的问题,我建议您:
看看这个 objective-c soundcloud api 的自述文件。
阅读此设置指南。
然后阅读此使用指南。
查看这个测试 iPhone 应用程序。< /p>
希望这有帮助!
i believe this callback url is for oauth authentication, correct? i needed to do the same thing for twitter and ended up setting up a custom url scheme for my app (ie appname://oauth) and using this as the callback url.
in case you want to try this, see this article on how to launch your app via a custom url scheme. specifically for twitter, you can see jaanus's post on some implementation details and the github project.
while i haven't integrated with soundcloud, i did find that they have an objective-c api that you may want to check out if you aren't already here.
update
so what i mentioned is true - that you can use a custom url scheme and such to handle the authentication, but it's not exactly required. i found this article which outlines two methods for authentication - the first is for ios4 only and requires very little code. the second should work on 3.x and uses the custom url method i mentioned above (and outlines how to use it to authenticate).
so to answer your question once and for all, i suggest you:
look at this readme for the objective-c soundcloud api.
read this setup guide.
then read this usage guide.
check out this test iphone application.
hope this helps!