I think this may be a permissions issue but I am not sure what to do to get what I want. I run the query and either get not results or an indexing error on the where clause. See below:
var fb = new FacebookClient(accessToken);
This query works fine
dynamic result = fb.Get("fql", new { q = "SELECT uid2 FROM friend WHERE uid1 = me()" });
This query runs but gets no results
dynamic result = fb.Get("fql", new { q = "SELECT url FROM url_like WHERE user_id = me()" });
This query gets OAuthException - #604
dynamic result = fb.Get("fql", new { q = "SELECT message, author_uid FROM checkin WHERE author_uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND page_id IN (SELECT page_id FROM page WHERE strpos(name, 'U2') >= 0)" });
I have tried adding permissions (perms="user_likes,friends_likes,user_checkins,friends_checkins") to the fb:login-button tag. I am getting an accessToken back. here is my code.
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({
appId: <My app id>, // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function (response) {
if (response.status === 'connected') {
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
alert(accessToken);
} else if (response.status === 'not_authorized') {
alert("User not Authorized!");
} else {
alert("User not Logged in!");
}
});
};
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
} (document));
Any help would be greatly appreciated. I am very new to FB Development and find the documentation and information to be very scattered and confusing.
Thanks,
Rhonda