Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The photo-tagging tag has no wiki summary.
0
votes
0answers
22 views
Facebook PHP: Tagging an Uploaded Photo
I'm working on a quick Facebook App that allows users to upload images to a dedicated Facebook Page. I would like to automatically Tag the user uploading the image.
I've tried several different ...
2
votes
2answers
29 views
Fetching photos in which 2 or more people are tagged
As the title says, I'm trying to fetch up to 10 photos in which the currently logged user and one or more of his/her friends are tagged. Currently I'm trying to do this with the PHP API and FQL.
I'm ...
0
votes
1answer
18 views
FQL: Retrieving photos that have multiple friends tagged
How would I retrieve all the photos that have multiple friends tagged given a few friend IDs?
The following doesn't seem to retrieve all photos (or any in many cases):
SELECT object_id, src_big FROM ...
0
votes
0answers
16 views
Select photo_tag from friends
Recently I deleted many photos from my profile but I did not untag myself first.
Now I have 100 photos active, though my profile says that I have 700.
It seems that it still counts the photos of my ...
0
votes
1answer
26 views
Getting list of my friends that are tagged in a photo
Users, events and groups can all be tagged in a photo. In the available fields from photo_tag, you can't distinguish what subject id is a user, event or group. I want to just return a list of my ...
0
votes
0answers
38 views
Graph Photo tagging - generates only tags waiting for approval
I try to build an app where users could tag a friend on a picture of a site...
picture of side is e.g.:
...
-3
votes
3answers
951 views
require facebook page users to like page before tagging or uploading or commenting [closed]
Just as noted in the title, we run a page for our business, and i saw this on another company's page. In order to comment or tag or like a photo in the page's collection of photos, you first have to ...
0
votes
0answers
324 views
facebook: when tagging photos, some people don't show up in the drop down box [closed]
I have been having this annoying problem. Facebook doesn't let me TAG some of my friends, they just don't show up in the drop down box when I try to tag them. It mostly happens when attempting to tag ...
1
vote
1answer
354 views
Facebook API: How to tag all the people who liked your page?
Say I have a Facebook page and there are n number of people who liked that page. Now I want to upload a photo on this page and tag all the people who liked that page. Is this possible? If so how?
0
votes
0answers
301 views
Tagging a photo in facebook with batch graph api
I have some working source code which tags people friends in a photo, however it loops through doing an api request per tag.
I know this can be done using a batch request, which is an json encoded ...
1
vote
0answers
279 views
Not able to tag photos on facebook using the android sdk
I am using the following code (from sdk examples "Hackbook") to add a tag to a photo after uploading it.
json = Util.parseJson(response);
photo_id = json.getString("id");
String relativePath = ...
3
votes
0answers
355 views
How do I get all photos a fan page is tagged in with the Facebook Graph API?
I was able to write a PHP application which requests an access node for the admin of the FB Fan Page, and then requests an access node to gain access to the fan page itself.
I'm now able to get all ...
1
vote
1answer
386 views
What is the best way to find photos where ALL tags to be searched on are in the photos using FQL?
If I want to use FQL to search for photos where 2 people are in the photos I can do this using the following code -
$fql_query_url = 'https://graph.facebook.com/' . ...
-1
votes
1answer
290 views
Developing a photo tagging application (with possibiltiy of tagging unlimited tags)
Developing a facebook application similar to:
http://www.fostersartofchilling.com/introducing-strong
Their is an image that will be relieved if all the pixels are tagged.
Hovering on any pixel on the ...
2
votes
1answer
7k views
What is the best way to get list of photos with me and a friend tagged in them?
I'm doing this fql:
SELECT object_id, pid, src_big, src_big_height, src_big_width, src, src_height, src_width
FROM photo
WHERE pid IN (SELECT pid FROM photo_tag WHERE subject= [me_uid]) AND pid IN ...
-1
votes
1answer
324 views
Is it possible to edit a post title on user facebook profile using facebook graph api?
I have done a facebook application which upload photos into default application album. I found that after the upload, there will be a post displayed on user profile saying 'Smi added 10 new photos to ...
0
votes
1answer
543 views
Problem about querying the photo_tag using FQL on facebook?
I have an application which wanting to show the statistics about a friend who got tagged in a photo. The outcome seems odd.
e.g. I have a friend A. A is a friend of B but B isn't my friend. B has a ...