New answers tagged
facebook-php-sdk
0
I see this as 2 questions:
1.) How to get a lightbox
2.) how to autopost a message or action
1.) The lightbox dialogs are something you can invoke with the js sdk -> FB.ui IF you have basic permissions. The only exception i found was Facebook tab apps! :D
2.) What i can make of the screenshot is just a simple post to a users /[user]/feed on the graph, to ...
0
Sounds a bit fishy ....
still:
https://developers.facebook.com/roadmap/offline-access-removal/
you can extend a users token for 60 days ...
cheers
0
Maybe you should switch to FB JS SDK and FB.login() method? It always provides the best user experience.
https://developers.facebook.com/docs/reference/javascript/FB.login/
1
Why not create a Facebook app and use App Access Token to retrieve the feed for the Public pages.
Though you might get feed of some pages without app access token or response for different end points without access_token, but as the Facebook's API is constantly changing, and would finally settle with authorized request to their end points, I would suggest ...
0
When the User logs off from Facebook the User is not logged out of your application. Both Facebook and your application do not share common common sessions. But when the logout from your application is triggered, it also logs out the User from Facebook.
0
I just figured out how to do it using the Facebook PHP SDK:
1- POST the Facebook event on the page using
$attachment = array(
'access_token' => $access_token,
'name' => $title,
'start_time' => $start_time,
'description' => $description
);
$res = $fb->api('/PAGE_ID/events/', 'post', $attachment);
2- Retrieve the EVENT_ID ...
0
You cannot write to a mailbox. Facebook a couple of years ago allowed access to send messages, but they realized very quickly how easily this is abused.
0
i had the same problem, after hours surfing the internet i found out the problem was with my app secret ID
i hope this helped
0
Facebook API has something called App Notifications. It is still in beta but working very nice.
0
ASAIK you cannot just send a message, but you can open a dialog for the user to see + send a message:
https://developers.facebook.com/docs/reference/dialogs/send/
(via http://facebook.stackoverflow.com/questions/2943297/how-send-message-facebook-friend-through-graph-api-using-accessstoken)
0
Check the settings on your app as well - I think it's the 'Visibility of app and posts' setting defaults to 'Friends' instead of 'Public'. Maybe that'll do it?
0
I had same problem and found solution here - Getting long-lived access token with setExtendedAccessToken() returns short lived token
// ask for the extended token and get it from session ...
$facebook->setExtendedAccessToken();
$access_token = $_SESSION["fb_".FB_APP_ID."_access_token"];
// now set it into the facebook object ....
...
0
When you make a call with the PHP SDK, you also pass a similar set of parameters:
$attachment = array(
'link' => 'http://your-cool-site.com',
'description' => 'This is the description',
...
'actions' => array(
array(
'name' => 'Vote Now!',
'link' => 'http://your-cool-site.com/vote.php'
)
)
);
$result = ...
1
You can use a fgl query to do this. See: http://developers.facebook.com/docs/reference/fql/page_fan/. Don't forget to set the user_likes permissions.
You also need a valid fanpageid for your query, see: Get Facebook fan page ID
In the example code below: If the user liked the page $response should contain the created_time else $response will be empty.
...
0
I hope you've found a solution! But if not, try with the following code. It worked for me! $facebook->getLogoutUrl(array( 'next' =>'http://mydomain.com/logout.php','access_token'=>$facebook->getAccessToken()));
If you check out the official documentation you'll see it says nothing about setting the access token option in the parameter array but ...
0
When you are setting a cookie, you cannot read the cookie until after the page refreshes. You can force a refresh by using php header.
To answer specifically, you cannot read a cookie just written until after you refresh.
0
I had the same problem too (access_token=0), but then I realized I was clearing Facebook cookies before calling getLogoutURL(). If you get the getLogoutURL() result first, access_token should not be zero.
0
Okay, so i managed to get the result i was looking for. I found it here Requests Dialog code does nothing
so i changed my code, removed the form and used this:
<div id="fb-root"></div>"
<script src="http://connect.facebook.net/en_US/all.js"></script>
<a href="#" onclick="inviteFriend()"><img ...
0
The PHP is server side. So when the user click in a button, the php side, doesnt exist anymore.
You have to create a javascript funcion.
function inviteFriend(){
FB.ui({ method: 'apprequests',
message: 'Share a geordie wall post with your mates!'});
}
And associate the button click to the function.
<input type="button" ...
1
Try looking into the Notification API that Anvesh mentioned in a comment.
You'll want to be careful with notifications and follow the recommended best practices. You don't want to send notifications to users who would not want them in the first place. You could get hit with negative feedback and get shut down by Facebook.
As for how to actually make the ...
2
You should be able to get the first name with this call:
$friends = $facebook->api('/me/friends?fields=first_name');
Also, what do you mean by making the profile image bigger? Do you need something like this: https://developers.facebook.com/docs/reference/api/using-pictures/#sizes
1
I added this answer to one of your other questions, but it applies here as well:
You can use FQL to make an SQL-like query that can limit and randomize the records returned. You can get any public field of the friends this way.
Your query would look something like this:
SELECT uid, first_name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ...
2
You can use FQL to make an SQL-like query that can limit and randomize the records returned.
Your query would look something like this:
SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ORDER BY rand() LIMIT 12;
To use FQL with the PHP SDK, use this format:
$facebook->api(array(
'method' => 'fql.query',
...
1
You could, for instance, use the break statement to exit the loop. Use it like this:
if ($user) {
$user_profile = $facebook->api('/me');
$friends = $facebook->api('/me/friends');
$counter = 1;
echo '<table>';
foreach ($friends["data"] as $value) {
echo '<td>';
echo '<div class="pic">';
echo '<img ...
0
If you use Firefox, it won't send the name post in the POST data, but post.x and post.y.
This is because you used an image as the submit button of the form, and Firefox sends the x and y coordinates of the point you clicked relative to the top left corner of the image.
1
You need to include a section that perfoms authorization to the facebook graph API.
Just add this to the top of the code.
<?php
include_once("facebook.php");
$app_id = "*****YOUR_APP_ID*****";
$app_secret = "*******YOUR_APP_SECRET*********";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret
));
$uid = ...
0
if it you are lucky and your version of php sdk still registers session variables than right after _graph method declaration:
//find this method below
protected function _graph ($path, $method = 'GET', $params = array ())
{
//paste right after _graph method declaration code below:
if ...
0
You need to make sure that the $config[‘appId’] and the $config[‘secret’] are set. That's all. You will get those in your app settings in the developer area => http://developer.facebook.com
0
First of all, as you need to post to your company's Page, then you would require Page Access Token and coincidentally it never expires onece generated.
First you will have to implement login feature of Facebook along with extended permission manage_pages permission. The easiest and fastest way to do the same would be to create an App and then using Graph ...
0
Ok, so what I usually do is provide data in the app_data field of signed_request to know which page to load. When POSTing, I redirect to the tab directly after processing the payload.
So, there are two methods a page, that is actually a facebook tab, may be requested: GET and POST.
GET
When using GET, the tab should always be requested using a facebook ...
1
EDIT : So now, the conclusion: (test case below)
You cannot control the execution of subsequent statements of a multi-statement query.
You can therefore not use multi_query() in the way you wanted to.
Execute them all, or execute none.
Regarding
Multi_query #2 "current for benchmark" How to remove duplicate fields in result set after next_result()?
Use ...
0
To post a status message you have to ask the user for permissions see: https://developers.facebook.com/docs/reference/login/extended-permissions/ you will need publish_actions here.
Cause you want to post on the on click event you will have ask the permission before show the form.
You can use jquery to handle your on click event (on submit in the code ...
0
You should make sure that you aren't sending anything before your call to header(). If you have any whitespace before this code is called, or any HTML then header() will not work.
If your enviroment meets the requirements for header_register_callback then I recommend you give that a try as well.
Also after you use header('Location'); you should call the ...
0
Add name attribute to your input tag. and use isset for check if the user pressed the submit button.
<input type="submit" value="post to wall" name="submit"
// i did try my wall code here but it still posted on page load
/>
</form>
</div>
<?php
if (isset($_POST['submit'])){
...
0
<textarea name="status2" cols="50" rows="5"<input type="text"/>
Doesn't make sense.
Guessing that your textarea is well coded in your real snippet. You should have the value of the textarea inside $_GET['status2'], so change traslate.php:
$args = array(
'message' => $_GET['status2']
...
this is the code i've written for the test:
...
0
I think your problem is that your browser re-sends data each time the page is reloaded.
There are 2 approaches:
Redirect user to the same page, so sent data will be cleared (header("Location: asd"))
Store some hash in session, make a hidden input and check whether the hash is right. Change the hash when the form is correctly submitted.
0
You should put the code for the posting to the wall inside translate.php since that is the page listed in the form action. When the form gets submitted, values will be passed as parameters to translate.php then you can use $_GET to fetch them and execute the code that writes to the wall.
0
Apparently, despite what the API documentation says, the privacy setting is 'privacy_type', not 'privacy'. I found that out here on SO I think, but closed the tab so I can't immediately share the link.
0
You could try something along these lines:
$sql = sprintf("SELECT af_freefeed.pageid FROM af_freefeed left join af_ban ".
"on (af_freefeed.pageid = af_ban.pageid) ".
"where af_freefeed.pageid = %s and ".
"af_ban.pageid is null limit 1", $pageid);
to replace your first two queries.
The existence of a record in ...
1
i am checking one table to see if user is banned, then if not, i am getting row for the id and updating it's view count by 1.
The following query may help you to update the view count. I assume that you already know the page_id.
UPDATE af_freefeed SET views=views+1 WHERE page_id=%s and page_id not in (select page_id from af_ban WHERE ...
2
Please run following query in mysql and check your query run time :
CREATE INDEX pagidIndex ON af_ban (pageid(11));
CREATE INDEX pagidFeedIndex ON af_freefeed (pageid(11));
CREATE INDEX viewsIndex ON af_freefeed (views(11));
1
Unfortunately, not. Thing like this can usually be accomplished with Realtime Updates, where you subscribe to certain fields of the User object (such as "likes", "events", etc) and you will receive a callback from FB when one of these changes. However, not all fields are available for subscription, and it seems that inbox is one of them.
You can explore ...
1
You can.
It is under the /user_id?fields=inbox
You will need read_mailbox (extended permissions) permission too.
1
The problem is that those elements do not always exist, and you have E_STRICT error reporting turned on in PHP (which actually helps you spot issues).
Thus, you need to make sure that all variables are actually set before trying to output them. Also, make sure to access all variables with a $ prefix. That might look like this:
for ($i = 0; $i < ...
0
As you ask for the permissions, so you may use the presence of user_id or oauth_token to ascertain that the user has already authorized your app and you may load the flash file instead of the splash screen.
The documentation about the fields of signed_request describes the same as
Some fields and values, the user_id and oauth_token for example will ...
0
So it turns out some tables require that you specify your application's private key.
0
Try using $facebook->destroySession();
instead of session_destroy();
3
Try to use index in getting count. Like for example COUNT(pageid). It will speed up your query.
Update
You can also try this link for further explanation
1
The PHP SDK has a setAccessToken() function. You can use that to set the token to your application access token.
You can easily get your app token by combining your application id and secret separated by a pipe (|) character, like this:
$fbConfig = array(
'appId' => 1234567890abcdefg,
'secret' => 1234567890abcdefg,
'cookie' => true,
)
...
Top 50 recent answers are included




