]> git.openstreetmap.org Git - rails.git/blob - app/views/oauth_clients/show.html.erb
Removed file which isn't needed any more.
[rails.git] / app / views / oauth_clients / show.html.erb
1 <h1>OAuth details for <%=@client_application.name %></h1>
2 <p>
3         <b>Consumer Key:</b> <%=@client_application.key %>
4 </p>
5 <p>
6         <b>Consumer Secret:</b> <%=@client_application.secret %>
7 </p>
8 <p>
9         <b>Request Token URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
10 </p>
11 <p>
12         <b>Access Token URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
13 </p>
14 <p>
15         <b>Authorize URL</b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
16 </p>
17
18 <p>
19         We support hmac-sha1 (recommended) as well as plain text in ssl mode.
20 </p>