Created
March 22, 2013 19:29
-
-
Save fdaciuk/5224043 to your computer and use it in GitHub Desktop.
Pegar ID de usuário ou página do Facebook com jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param username - (required) O nome de usuário ou da página que você quer que retorne os dados | |
* @param data - (return) Retorno da função com os dados do usuário ou página do Facebook | |
* | |
*/ | |
$.ajax({ | |
url : 'http://graph.facebook.com/'+ username +'?callback=?', | |
dataType : 'jsonp', | |
success : function( data ) { | |
console.log( data ); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment