Posts by Alexandre Bonfá • 135 points
14 posts
-
-1
votes3
answers2591
viewsQ: How to create a mobile desktop shortcut for a Web App?
I have a web app ready and published. There is the possibility to create a web app icon on the Desktop of iOS and Android Systems automatically or at least through a confirmation question? I hope I…
-
1
votes1
answer138
viewsQ: Is Facebook Embedded Post only allowed for profiles that allow Public Followers?
I made a simple application to test the ability to embed posts on external Facebook sites. On it, you paste a URL of any Facebook post, click a button, and the post is inserted into a div. I…
-
0
votes1
answer124
viewsQ: How to show a Facebook Embedded Post through Button Click?
I need to create a Embedded Post on a page through a Click event. I am using the following function: <body> <div id="fb-root"></div> <div id="myDiv"></div> <div…
-
1
votes2
answers1009
viewsQ: How to avoid blocking by number of accesses on Facebook Graph?
I have a routine for consulting the last 50 posts: FB.api('/me/friends?limit=10', function(response) { var friend_data = response.data; for(var i = 0; i < friend_data.length; i++) { FB.api({…
-
2
votes1
answer236
viewsA: Show all facebook posts in a list
The problem was in access_token. This way worked perfectly: var fburl = "https://graph.facebook.com/xxxxxxxxx?access_token=yyyyyyyyy"; $.get(fburl, function(data){ console.log(data); },'jsonp');…
-
1
votes1
answer236
viewsQ: Show all facebook posts in a list
I have numerous profiles and fan pages that should control the content. Breaking in one by one is a huge job. That’s why I’m making this application to show all posts by date order, separated by…
-
0
votes2
answers645
viewsQ: Facebook does not allow the presentation of posts in iframes?
Follow a routine that searches all posts of a particular user via Facebook Graph API, displays the time it was posted and the message, description and type of post on DIV: FB.api( { method:…
-
0
votes1
answer86
viewsQ: Using a FB.Api within another FB.Api
I’m doing a feature to make a list with 10 facebook friends with 10 posts (status) each. The code below performs the searches in a certain way, however the div "Friend" + id does not receive the…
-
1
votes1
answer218
viewsA: Facebook API does not find logged in user
The problem was in the configuration of the app on Facebook. To solve it I had to adjust this option: Do you want do make this app and all its live Features available to the general public? in the…
-
4
votes1
answer218
viewsQ: Facebook API does not find logged in user
I minimized my code as little as possible in order to isolate the error. I’ve reviewed the forum looking for a simple answer, but no hint solved this basic problem. In the app settings, the only…
-
1
votes1
answer148
viewsQ: Installation of Maverick causes the server to stop working
I’m novice with Apples and recently bought a mac book, with Lion operating system. I installed php, mysql, etc and everything worked perfectly. Now I’ve upgraded the system to Maverick and the…
-
0
votes2
answers384
viewsQ: jQuery app works on Localhost, Mobile, but does not work on browsers
I developed a small application using HTML5 and jQuery. It works perfectly on localhost. I uploaded the whole code, and a specific routine did not work on any of the browsers (Chrome, Firefox or…
-
2
votes1
answer477
viewsQ: DOM update via jQuery Mobile
I am having trouble updating an element, through jQuery. I will summarize the codes: HTML <div data-role="header" data-position="fixed" data-tap-toggle="false"> <a href="#nav-panel"…
jqueryasked Alexandre Bonfá 135 -
0
votes9
answers9696
viewsA: Is it right to use the <i> tag for icons and not italics?
According to W3C, the tag <i>, should be used to highlight part of the text inline (in the same line). The default is to format the text in italics. Is being used to insert icons instead of…