Since OAuth doesn’t tell me anything about the user who just authenticated, I need the
screen_name and/or id_str in order to make subsequent calls.
currently, i’m using:
<code>GET account/settings</code>
to get the screen_name, followed by a
<code>GET users/show</code>
to get the id_str
is there a way to get both back in one call?
thanks!