Is there a graph API equivalent of the Facebook Access Token linter/debugger that I can call programmatically?

The linter is nice. It tells you all sorts of cool information about the token you have, such as the permissions granted (available to me via me/permissions), the issue and expiration dates, the App ID, App name, profile Id, User Id, User Name, if it is valid (available to me if I try to call /me and watch for the exception returned), and the origin.

App ID:      APP ID : APP NAME
Profile ID:  PAGE NAME
User ID:     ID : NAME
Issued:      1328916821 : 3:33 pm Feb 10 2012
Expires:     1334100821 : 4:33 pm Apr 10 2012
Valid:       True
Origin:      Web

So how about it? Is there a programmatic way to get this info without having to resort to screenscraping the linter tool?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

No, it doesn't exist I'm afraid. What were you wanting it for ooi??

link|improve this answer
I think it would make a great question. Many people (most of them new) on s/o ask access_token questions, then this is sometimes a follow up question to their other questions. And I figured it was worth it's own question all to itself. – DMCS Feb 11 at 4:50
But what would you use the API for? I can't think of any compelling reasons to have API access for this info. If there's a good reason it may get built :) – mrtom Feb 11 at 5:12
feedback

Unfortunately, no.

You can get a JSON response from the URL debugger by adding &format=json to the URL, but this doesn't work currently for the access_token debugger.

Could file a bug for it!

link|improve this answer
do u mean like this.developers.facebook.com/tools/debug/… – kitokid May 23 at 9:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.