I want to provide logging with facebook on my webpage. How can I use both APIs to get some facebook user info using PHP in one place and JS in other place? This is link to offical php sdk example usage (together with JS sdk):
https://github.com/facebook/php-sdk/blob/master/examples/with_js_sdk.php
What i want to do is to use somewhere in that file this code for example:
FB.api("/me", function (response) {
alert('Name is ' + response.name);
});
or other JS sdk code to get some user info.
I always have a problem that when I use one type of logging in (PHP or JS) I can use only one kind of api to call for info. I don't know how to provide logging in which will make available both APIs. Someone knows how to do it? Thanks for help!