Is there some way to escalate the access level to a specific user’s account? My application only needs read access to most user’s accounts, so the application’s access level is Read Only. However, I’d like to be able to get Read/Write access to privileged user’s accounts, so that they can access features most users won’t have.
If I’m reading the docs right, using the x_auth_access_type parameter with POST oauth/request_token is the only way to override the application’s access level, but it wouldn’t seem to be useful in this case because I don’t know at this point the user’s Twitter username.
I suppose I could have an entirely different request flow for the privileged users, but is there something else I’m missing here?