Standalone: fix auth with Mastodon

This commit is contained in:
Alex Gleason 2021-08-22 14:46:40 -05:00
parent 0b4b3479ea
commit 28b1bdf1ee
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 2 additions and 2 deletions

View File

@ -45,13 +45,13 @@ export function createAppAndRedirect(host) {
export function loginWithCode(code) { export function loginWithCode(code) {
return (dispatch, getState) => { return (dispatch, getState) => {
const { client_id, client_secret } = JSON.parse(localStorage.getItem('soapbox:external:app')); const { client_id, client_secret, redirect_uri } = JSON.parse(localStorage.getItem('soapbox:external:app'));
const baseURL = localStorage.getItem('soapbox:external:baseurl'); const baseURL = localStorage.getItem('soapbox:external:baseurl');
const params = { const params = {
client_id, client_id,
client_secret, client_secret,
redirect_uri: 'urn:ietf:wg:oauth:2.0:oob', redirect_uri,
grant_type: 'authorization_code', grant_type: 'authorization_code',
scope: scopes, scope: scopes,
code, code,