2018-10-26 13:16:23 +00:00
|
|
|
import oauth from '../../services/new_api/oauth.js'
|
|
|
|
|
|
|
|
const oac = {
|
|
|
|
props: ['code'],
|
|
|
|
mounted () {
|
|
|
|
if (this.code) {
|
|
|
|
oauth.getToken({
|
|
|
|
app: this.$store.state.oauth,
|
|
|
|
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)
|
2018-12-25 17:43:52 +00:00
|
|
|
this.$router.push({name: 'friends'})
|
2018-10-26 13:16:23 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default oac
|