no.
if you do not already have the access token for the user (i'm assuming you are implementing a login-with-twitter scenario) then it is not guarantted that this can be done.
there is one scenario which may work, however i would not expect it to work in all browsers and i would also be cautious about implementing it as it may violate twitter's terms of use:
- the initial state: you have no session cookie from your own app stored on the users browser with which to identify the user to your app (i'm assuming this is the scenario you are writing about?), and this user may or may not be logged in to twitter.
- unbeknownst to the user, use javascript to spawn a hidden iframe on the browser page
- make sure you have some code in your main window to prevent anything like
top.location.href = window.location.href; from running in the iframe.
- in the iframe run through the oauth steps until you reach the step where you open the twitter url to authenticate the user https://api.twitter.com/oauth/authenticate. if the user is logged in then you will get the oauth token, otherwise you will just get the twitter sign-in screen in your iframe. for the latter you will know that the user is not logged in, but...
- if you got the oauth token in the previous step then you can send a request to twitter's /oauth/access_token endpoint in the iframe once again to get the user's id.
as i said earlier, i would not be surprised if this did not work in all browsers since not all browsers may have the capability to prevent code like top.location.href = window.location.href; from running in an iframe. and even if they do allow such code at present, i would not expect this to remain feasible in future. in short, if twitter has this code on its login page then it is because they do not want you to embed their page within your app (hidden or otherwise).
in summary - there may be a way to do what you are asking, but i wouldnt expect it to be feasible across all browsers, or for all time. it is a shame there is no reliable way to check if a user has previously granted your app permission and is currently logged in as this would greatly improve the user experience.