We’re running in to an issue where a user seems to have all required permissions to create a promoted-only tweet on behalf of another user but still receiving the error:
twurl -H ads-api.twitter.com /1/accounts/18ce53utno3/tweet -d "status=test&as_user_id=478626801"
"errors": [
{
"code": "UNAUTHORIZED_ACCESS",
"message": "User 1175047837 is not authorized to create tweets for user id 478626801"
}
]
I’ve verified the we have FULL user type for account 18ce53utno3 and user 478626801:
twurl -H ads-api.twitter.com /1/accounts/18ce53utno3/promotable_users
"data": [
{
"account_id": "18ce53utno3",
"created_at": "2013-12-05T16:41:05Z",
"deleted": false,
"id": "2qtnj",
"promotable_user_type": "FULL",
"updated_at": "2013-12-05T16:41:05Z",
"user_id": "478626801"
}
]
Also checked authenticated user access for the account-user combination:
twurl -H ads-api.twitter.com /1/accounts/18ce53utno3/authenticated_user_access
"data": {
"permissions": [
"AD_MANAGER",
"TWEET_COMPOSER"
],
"user_id": 1175047837
}
Are we missing a piece of the required permissions to get this to work?
Thanks,
CJ