privacyThe privacy parameter is used when making a post to set its visibility in a person's network. See the full privacy parameter article for more information on how to use it.
metadata=1You can look at metadata information for many objects in the graph. Adding metadata=1 to a request URL is how you access it. Please see the full article on introspection for more information.
date_formatThis is used to control the format for dates generated in request responses. Please see the article on dates for more information.
with=locationThe with=location parameter can be used to specify that you can only return posts with a location location when querying certain objects. See the document on selecting results.
typeThe type parameter is used in search to tell the search API what kind of objects you're looking for.
center and distancecenter and distance are both used in search to find objects by geographic location.
access_tokenThe access_token is a token that's passed along with most requests that proves that an app can perform operations on behalf of a user, page or app. For a short definition, see the login section of the Graph API getting started guide or our full page on access tokens as part of the login documentation.
fieldsThe fields parameter is used in search and selection to select which fields you would like to see returned from a query.
idsThe ids parameter can be used in selection to request more than one object to be returned from a single query. It can also be used to get the object that corresponds to a URL in the graph.
localeThis parameter is used to control what language is used when returned. Please see our Graph API page on locales for more information.
signed_requestThis parameter is used to pass demographic information to certain kinds of apps to implement geographic or age-based restrictions. Please see our documentation on the signed request as part of the login documentation or the reference page on the parameter.
callbackThe callback parameter is a string you can pass into a call that makes it easier to build callbacks in JavaScript. If your response is JSON, the callback name will be the name of the dictionary that's returned. For example, the Graph API explorer makes a call like this:
https://graph.facebook.com/774635482?fields=id%2Cname&callback=___GraphExplorerAsyncCallback___&method=GET&format=json
The returned value will look something like:
/**/ ___GraphExplorerAsyncCallback___({
"id": "774635482",
"name": "Christopher Blizzard"
});
format=jsonAdded in 2007, this is how you tell the platform to return JSON.
redirect=falseUsed for pictures this gives you the data about a picture instead of the picture itself.
width and heightUsed in pictures this controls what size pictures to return.