Difference between revisions of "Auth: Tumblr"
Jump to navigation
Jump to search
(Created page with "== Registering your Application == Tumblr application creation can be accessed at https://www.tumblr.com/oauth/register. * '''Application Name:''' Provide a simple but descri...") |
|||
| Line 1: | Line 1: | ||
| − | == Registering your Application == | + | ==Registering your Application== |
Tumblr application creation can be accessed at https://www.tumblr.com/oauth/register. | Tumblr application creation can be accessed at https://www.tumblr.com/oauth/register. | ||
| − | * '''Application Name:''' Provide a simple but descriptive title, such as "Sitename" or "Sitename Lorekeeper". | + | *'''Application Name:''' Provide a simple but descriptive title, such as "Sitename" or "Sitename Lorekeeper". |
| − | * '''Application Website:''' Enter your site's address, for instance https://lorekeeper.me | + | *'''Application Website:''' Enter your site's address, for instance https://lorekeeper.me |
| − | ** For local testing, use <nowiki>http://localhost/</nowiki> | + | **For local testing, use <nowiki>http://localhost/</nowiki> |
| − | * '''Application Description:''' Enter a brief description of your app. | + | *'''Application Description:''' Enter a brief description of your app. |
| + | **For example: "Authenticates a Lorekeeper user with their Tumblr account." | ||
| + | *'''Administrative contact email:''' Enter your email address. | ||
| + | *'''Default callback URL:''' <nowiki>https://your-site.com/auth/callback/tumblr</nowiki> | ||
| + | |||
| + | == Connecting to Lorekeeper == | ||
| + | The Tumblr application portal can be accessed at https://www.tumblr.com/oauth/apps. | ||
| + | |||
| + | You can access the client ID and client secret from this page. | ||
| + | |||
| + | In your .env file, add the lines: | ||
| + | TUMBLR_CLIENT_ID=your_client_id_here | ||
| + | TUMBLR_CLIENT_SECRET=your_client_secret_here | ||
| + | Replacing the client_id and client_secret with the ones from your application. | ||
| + | [[Category:Social Media Authentication]] | ||
Revision as of 13:00, 5 May 2021
Registering your Application
Tumblr application creation can be accessed at https://www.tumblr.com/oauth/register.
- Application Name: Provide a simple but descriptive title, such as "Sitename" or "Sitename Lorekeeper".
- Application Website: Enter your site's address, for instance https://lorekeeper.me
- For local testing, use http://localhost/
- Application Description: Enter a brief description of your app.
- For example: "Authenticates a Lorekeeper user with their Tumblr account."
- Administrative contact email: Enter your email address.
- Default callback URL: https://your-site.com/auth/callback/tumblr
Connecting to Lorekeeper
The Tumblr application portal can be accessed at https://www.tumblr.com/oauth/apps.
You can access the client ID and client secret from this page.
In your .env file, add the lines:
TUMBLR_CLIENT_ID=your_client_id_here TUMBLR_CLIENT_SECRET=your_client_secret_here
Replacing the client_id and client_secret with the ones from your application.