getting facebook userid from login with jdk
in
Programming Questions
•
2 years ago
i made up a very simple facebook app-site-skeleton with a login-button. this works well an i am able to display the name and uid in the browser window.
now i try to get that uid into a processing sketch, which should run on the same site as an applett.
how can i do that?
thanks.
- function login(){
- FB.api('/me', function(response) {
- document.getElementById('login').style.display = "block";
- document.getElementById('login').innerHTML = response.name+ response.id + " succsessfully logged in!";
- });
now i try to get that uid into a processing sketch, which should run on the same site as an applett.
how can i do that?
thanks.
1
