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

24 lines
567 B
JavaScript
Raw Permalink Normal View History

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