Alright, I figured out my problem. I'm including my solution below for the benefit of others.
The steps I've listed above are indeed correct, but there are a few things that warrant further explanation to avoid the pitfalls that I fell into.
Posting to people who have liked an item on Facebook
Step 1: Create a Facebook App
- You'll need to visit the Facebook Developers page and create a new application
- You should not need a namespace, or webhosting for your application
- Fill out the details for your application
- Primarily, you'll need to select "Website with Facebook Login". The site URL should be the same as where your site is hosted. In my example, I am hosting in my dropbox shared folder, so I used
http://dropbox.com
- Set your App Domain to the hostname of your site URL. In my case, this is
dropbox.com which will allow Facebook to use *.dropbox.com. I also could have done dl.dropbox.com specifically.
Step 2: Create the dummy page
It is very important that you create a dummy page. I found that most of my problems were caused by setting up the initial page wrong. If you create a dummy page, you can experiment (or at least create another dummy page) until everything is working.
Make sure that your page is correct, especially the open graph tags. What does correct look like? You can check out my dummy page, but I've included the <HEAD> below:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<title>Test</title>
<link href="http://dl.dropbox.com/u/3618086/test2.html" rel="canonical" />
<meta property="fb:app_id" content="YOUR_APP_ID">
<meta property="og:type" content="product">
<meta property="og:title" content="PAGE TITLE" />
<meta property="og:description" content="PAGE DESCRIPTION" />
<meta property="og:image" content="http://www.stanford.edu/group/cardinalballet/Pictures/WebsitePics/portrait-placeholder.jpg">
<meta property="og:site_name" content="SITE_NAME"/>
<meta property="og:url" content="http://dl.dropbox.com/u/3618086/test2.html">
</head>
- The critical piece of this are the
fb:app_id (which should be your Facebook application id), and og:type. There are multiple types, and certain ones don't have publish permissions. For more information, visit the Open Graph API documentation. I initially liked my page when it was an article, which caused many of the problems that I had.
- You can also check the page for Open Graph errors using the Open Graph Debugger
Add the like button to the page, along with the Facebook SDK.
Step 3: Like the page
The most straightforward part of the entire process. Visit your dummy page, and press the Like button.
Step 4: Send a message
Assuming that you've done the previous steps correctly, the last bit should also be straightforward. I use curl in my example, but you should be able to get it using any sort of POST request.
Obtain an access token.
curl -F grant_type=client_credentials -F client_id=MY_APP_ID -F client_secret=MY_APP_SECRET -F redirect_uri=https://graph.facebook.com/oauth/access_token https://graph.facebook.com/oauth/access_token
Obtain the id of your product page.
curl -g https://graph.facebook.com/\?id\=PAGE_URL
Post a message to all people who liked your product page.
curl -F 'access_token=ACCESS_TOKEN' -F 'message=MESSAGE' -F 'id=ID_FROM_PREVIOUS_ACTION' https://graph.facebook.com/feed
Step 5: Success!
At this point, hopefully everything has gone well. As the user who liked the page, check out their news feed. You should see a post with the title, image, and description that were on your page. Hooray.
...And that's how I solved it. Hopefully this will be valuable to other people. I would be glad to elaborate if I have missed any details.
redirect_uriin step 4 should lead to your site, not to:https://graph.facebook.com/oauth/access_token– Yan May 28 '12 at 18:39