我收到以下错误:
---:错误:'不支持的类型:nil。我们支持user_agent和web_server。'
当我尝试使用此网址重定向时:
https://launchpad.37signals.com/authorization/new?client_id=<client_ID>&redirect_uri=http://localhost:9292/oauth/callback&response_type=code
这是我使用
的代码class Client < Sinatra::Base
get '/oauth' do
redirect ::Base_Camp.oauth.auth_url
end
end
编辑:我还将response_type
更改为token
而没有更改
答案 0 :(得分:0)
原来,网址字段错误,type
不是response_type
。