Standalone: fix auth with Mastodon

merge-requests/685/head
Alex Gleason 3 years ago
parent 0b4b3479ea
commit 28b1bdf1ee
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -45,13 +45,13 @@ export function createAppAndRedirect(host) {
export function loginWithCode(code) {
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 params = {
client_id,
client_secret,
redirect_uri: 'urn:ietf:wg:oauth:2.0:oob',
redirect_uri,
grant_type: 'authorization_code',
scope: scopes,
code,

Loading…
Cancel
Save