1 <h1>OAuth details for <%=@client_application.name %></h1>
3 <b>Consumer Key:</b> <%=@client_application.key %>
6 <b>Consumer Secret:</b> <%=@client_application.secret %>
9 <b>Request Token URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
12 <b>Access Token URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
15 <b>Authorize URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
19 We support hmac-sha1 (recommended) as well as plain text in ssl mode.