我正在使用rails构建一个Instagram应用。 oauth需要一串范围,其中+
将它们分隔在网址中。但是我注意到rails将+
转换为%2B
,导致我的应用授权失败。
如何在导航网址而不是+
中使用%2B
符号?
修改
代码:
redirect_to Instagram.authorize_url(:redirect_uri => CALLBACK_URL, :scope=> "comments+likes")
还要查看http://instagram.com/developer/authentication/的底部,看看我在说什么。
答案 0 :(得分:1)
为什么不在每个项目之间发送空格,这应该成为一个查询字符串?