0
votes
0answers
11 views
jquery- change attribute value of facebook-like button dynamically
I have an image gallery. The images gets open inside an modal window after an user clicks on it. I have kept facebook-like button in my modal window. I am using the html5 version of facebook like ...
0
votes
2answers
16 views
Facebook Graph API - Get profile picture prior to authenticating
Ok so i've tried the following:
FB.api("/me", {fields: "picture"}, function(response){
console.log(response);
});
And i'm trying to work around ...
1
vote
1answer
23 views
+50
facebook js sdk deauthorizing app still results as connected in FB.getLoginStatus
I am using the Facebook JS SDK to let users connect their facebook account to my website but I ran into a weird problem.
it seems when you follow these steps:
- connect for the first time with your ...
0
votes
0answers
22 views
facebook Requests Dialog - disconnected
I'm trying to implement the Facebook multi-friend request. It works great, here's the code used :
FB.ui({
filters: ['app_non_users'],
method: 'apprequests',
message: 'best prices !'
}, ...
1
vote
2answers
304 views
How to dynamically resize Facebook comments plugin using JavaScript?
My DIV of showing the Facebook comments plugin (e.g. .fb-comments) is fixed by CSS, consider that if I cannot modify that CSS, is it possible to resize the comments plugin using pure JS solution after ...
0
votes
0answers
22 views
facebook js sdk login show a reset password instead of a login password popup
I have a problem with the facebook login button of my site.
When I'm not connected to facebook and I click on the facebook login button from my site,
I got this popup: https://www.facebook.com/w.php ...
0
votes
1answer
19 views
Search facebook pages using javascript
I have an HTML application to search Facebook pages using pure JavaScript, no other libraries and no back-end.Most of the APIs that deal with searching and reading "pages" do not require user ...
0
votes
1answer
21 views
Passing encodeURIComponent(window.location.href), as “data-href” with Facebook Like plugin
I'm not sure how long this has been an issue with my Facebook Like plugin but I'm using
'data-href': encodeURIComponent(window.location.href)
to pass the URL to "Like" when a user clicks the ...
0
votes
0answers
15 views
FB.getLoginStatus() called before calling FB.init() cannot get rid of it
I am copying this code more or less from an online tutorial, but my code stubbornly does not run and shows the error "FB.getLoginStatus() called before calling FB.init()" - in console. The code in ...
3
votes
1answer
9k views
Facebook iframe FB.Canvas.setAutoGrow does not auto grow after initial load?
I have been building a facebook tab using html and css and facebooks javascript SDK.
I having problems with the iframe resizing to the size of the content.
I've managed to get it to work on initial ...
1
vote
2answers
41 views
Facebook Application - How do i count the number of friends a sender invites?
I am doing this facebook invitation (apprequest) but i need to count the number of invitation made by the user, anybody can help me?
The code below works but it only counts 1 invitation no matter how ...
5
votes
4answers
7k views
Redirect from Facebook canvas page to website
Is there a way to redirect from my Facebook canvas page to my external website? I've seen blogs and stackoverflow answers of the form:
<script>
window.top.location = ...
1
vote
2answers
1k views
Facebook user email id using javascript SDK
I am currently using the following code to get the email id of the user using my app
function get_id(cb){
FB.init({
appId : .......,
status : true, // check login status
...
0
votes
0answers
29 views
Phonegap Facebook Connect Plugin NativeInterface Issue
I get a TypeError in my try catch block on trying to do this with cordova and facebook connect plugin.
try {
alert('Device is ready! Make sure you set your app_id below this alert.');
...
0
votes
1answer
85 views
Removing multiple page reload issue
I am trying to fetch the user favourite movies and other details and FB JS SDK. Following works correctly for me. I have tried to use ajax to remove page reload. But I dont find why page gets reloaded ...