Skip to content

The Tumblr account is not being added to my team, even though I’m passing the correct OAuth_consumer_Key and OAuth_consumer_secret in the "tumblr_api" config. #442

@RiteshSinghApache

Description

@RiteshSinghApache

//social.accounts.services.js

case 'Tumblr':
let tokens = await TumblerCluster.getTokens(
config.get('tumblr_api.OAuth_consumer_Key'),
config.get('tumblr_api.OAuth_consumer_secret')
);
redirectUrl = https://www.tumblr.com/oauth/authorize?oauth_token=${tokens.auth_token};
const state = {
teamId,
network,
accessToken: req.headers['x-access-token'],
requestToken: tokens.auth_token,
requestSecret: tokens.auth_secret,
};
const tumblerencryptedState = this.authorizeServices.encrypt(
JSON.stringify(state)
);
SuccessNavigationResponse(res, redirectUrl, tumblerencryptedState);
break;

//

"tumblr_api":{
"OAuth_consumer_Key":"consumer_key",
"OAuth_consumer_secret":"consumer_secret"
},

I'm passing both the OAuth_consumer_Key and OAuth_consumer_secret correctly under the "tumblr_api" config, but the account still isn't being added to my team.

Could you please check if there have been any recent changes on your end that might affect Tumblr integration? If any updates were made to the auth flow or token handling, kindly let me know.

Thanks in advance!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions