Description
xurl whoami returns verified: false for a user who has an active X Premium subscription and a visible blue checkmark on their profile.
Steps to reproduce
- Run
xurl whoami with a Premium-subscribed account
- Observe
"verified": false in the response
Expected behavior
verified should be true, or whoami should include the verified_type and subscription_type fields.
Workaround
Querying the API directly with explicit fields returns the correct data:
xurl "/2/users/me?user.fields=verified,verified_type,subscription_type"
Response:
{
"verified": true,
"verified_type": "blue",
"subscription_type": "Premium"
}
Suggestion
Add verified_type and subscription_type to the default user.fields requested by whoami.
Environment
- xurl 1.0.3
- macOS 15.6 (arm64)
- OAuth 1.0a auth
Description
xurl whoamireturnsverified: falsefor a user who has an active X Premium subscription and a visible blue checkmark on their profile.Steps to reproduce
xurl whoamiwith a Premium-subscribed account"verified": falsein the responseExpected behavior
verifiedshould betrue, orwhoamishould include theverified_typeandsubscription_typefields.Workaround
Querying the API directly with explicit fields returns the correct data:
Response:
{ "verified": true, "verified_type": "blue", "subscription_type": "Premium" }Suggestion
Add
verified_typeandsubscription_typeto the defaultuser.fieldsrequested bywhoami.Environment