push hivesigner callback url change

This commit is contained in:
feruz 2020-07-25 15:14:04 +03:00
parent 26ef3dad6f
commit 065068ab1d
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
export const steemConnectOptions = {
base_url: 'https://hivesigner.com/',
client_id: 'ecency.app',
redirect_uri: 'http://127.0.0.1:3415/',
redirect_uri: 'http://127.0.0.1:3000/auth',
scope:
'vote,comment,delete_comment,comment_options,custom_json,claim_reward_balance,account_update,offline',
};

View File

@ -2,7 +2,7 @@ import hivesigner from 'hivesigner';
const api = new hivesigner.Client({
app: 'ecency.app',
callbackURL: 'http://127.0.0.1:3415',
callbackURL: 'http://127.0.0.1:3000/auth',
});
export default api;