pleroma-fe/src/components/oauth_callback/oauth_callback.js

25 lines
636 B
JavaScript
Raw Normal View History

2018-10-26 15:16:23 +02:00
import oauth from '../../services/new_api/oauth.js'
2025-03-11 18:48:55 -04:00
import { useOAuthStore } from 'src/stores/oauth.js'
2018-10-26 15:16:23 +02:00
const oac = {
props: ['code'],
mounted () {
if (this.code) {
2025-03-11 18:48:55 -04:00
const oauthStore = useOAuthStore()
const { clientId, clientSecret } = oauthStore
2018-10-26 15:16:23 +02:00
oauth.getToken({
clientId,
2019-06-19 23:20:14 -04:00
clientSecret,
2018-10-26 15:16:23 +02:00
instance: this.$store.state.instance.server,
code: this.code
}).then((result) => {
2025-03-11 18:48:55 -04:00
oauthStore.setToken(result.access_token)
2018-10-26 15:20:39 +02:00
this.$store.dispatch('loginUser', result.access_token)
this.$router.push({ name: 'friends' })
2018-10-26 15:16:23 +02:00
})
}
}
}
export default oac