Skip to content

Commit 7737078

Browse files
committed
Merge branch 'master' of github.com:qraftlabs/auth0-docs
added Siteminder
2 parents a9304b0 + 4d84b96 commit 7737078

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

app.js

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ var overrideIfClientInQs = function (req, res, next) {
174174

175175
res.locals.account.appName = client.name && client.name.trim !== '' ? client.name : 'Your App';
176176
res.locals.account.namespace = nconf.get('DOMAIN_URL_SERVER').replace('{tenant}', client.tenant);
177+
res.locals.account.tenant = client.tenant;
177178
res.locals.account.clientId = client.clientID;
178179
res.locals.account.clientSecret = client.clientSecret;
179180
res.locals.account.callback = client.callback;

docs/rails-tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ gem install auth0
1717
### 2. Setting up the callback URL in Auth0
1818

1919
<div class="setup-callback">
20-
<p>After authenticating the user on Auth0, we will do a POST to a URL on your web site. For security purposes, you have to register this URL on the <strong>Application Settings</strong> section on Auth0 Admin app.</p>
20+
<p>After authenticating the user on Auth0, we will do a GET to a URL on your web site. For security purposes, you have to register this URL on the <strong>Application Settings</strong> section on Auth0 Admin app.</p>
2121

2222
<pre><code>http://localhost:port/auth/auth0/callback</pre></code>
2323
</div>

docs/samlp.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ layout: doc.nosidebar
77
These are the paramters to configure on the SAML Identity Provider:
88

99
* The post-back URL (also called Assertion Consumer Service URL) is: **https://@@account.namespace@@/login/callback**
10+
* The Entity ID of the Service Provider is: **urn:auth0:@@account.tenant@@**
1011
* Binding for SAML Request (sent to IdP): **HTTP-Redirect**
1112
* Binding for the SAML Response (received from IdP): **HTTP-Post**
1213
* NameID format: **unspecified**

docs/wpf-winforms-tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To start with, we'd recommend using the __Login Widget__. Here is a snippet of c
3333
using Auth0.Windows;
3434

3535
var auth0 = new Auth0Client(
36-
"@@account.tenant@@",
36+
"@@account.namespace@@",
3737
"@@account.clientId@@",
3838
"@@account.clientSecret@@");
3939

0 commit comments

Comments
 (0)