Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8010885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:52:15+00:00 2026-06-04T18:52:15+00:00

This is driving me nuts. Can anyone post a practical example on this? My

  • 0

This is driving me nuts.

Can anyone post a practical example on this? My gratitude for life:

  1. Publish a post and add the related checkin/location info
  2. publish a photo and add the related checkin/location info.

In both cases the user delegates the action to the app. We have the access token by prior.

Please no theory, a working coding snipper 😉

I am particularly messed up because facebook asks a nested structures of objects and arrays

Any help would be really appreciated

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T18:52:16+00:00Added an answer on June 4, 2026 at 6:52 pm

    Grab the $user instance

    $user = $facebook->getUser();
    

    Check if the logged in user is authenticated.

    if ($user) {
      try {
        // Proceed 
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        error_log($e);
        $user = null;
      }
    }
    

    Present the login url with permissions needed for posting. Specifically the publish_streampermission as stated in the photo documentation http://developers.facebook.com/docs/reference/api/user/#photos

    if ($user) {
      $logoutUrl = $facebook->getLogoutUrl();
    } else {
      $loginUrl = $facebook->getLoginUrl(array(
                 'scope' => 'read_stream,publish_stream,user_photos'
                 ));
    }
    

    Place the me/photos call in a try/catch block to catch any exceptions that may occur.

        try {
            $facebook->setFileUploadSupport('http://yourapicallingwebsite.com/');
            $response = $facebook->api(
              '/me/photos/',
              'post',
              array(
                'message' => 'Testing the Photo Upload',
                'source' => '@/path/to/img',
                'place' => 'place_id' 
              )
            );
          }
       catch (FacebookApiException $e) {
           error_log('An error occurred posting the image');
       }
    

    Check the response from the me/photos call

    $photo_u = $facebook->api('/'.$response['id']);
    

    Display it if your like

    <img src=<?php echo $photo_u['picture'] ?>/>
    

    Check the place name if you like

    $photo_place = $photo_u['place'];
    <span><?php echo $photo_place['name'] ?></span>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is driving me nuts. I can't seem to get the data template within
This is driving me nuts. http://www.cssdrive.com/index.php/examples/exampleitem/focus_pseudo_class This is an example of using the hover
This is driving me nuts, I can't see the problem. Using jQuery (I'm stuck
This is driving me nuts! I am getting the classic Can't connect to local
This is driving me nuts!@#!@# I can load the tinyMce plugin for jquery just
This is driving me nuts! A little piece of code that I can't seem
This is driving me nuts so I hope someone can help an Objective-C noob
This is driving me nuts. I can't work it out stepping through with Firebug
Ok, this is driving me nuts. I've done just about everything I can to
This is driving me nuts and I can't figure out where I am dropping

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.