I have a web app that allows users to generate images and upload them to their Facebook account, using the Javascript SDK. How would I utilize Facebook's open graph to tell people that the user just uploaded an image using my app?
Here's the user's workflow:
1) User generates image
2) Image is temporarily stored on a webserver
3) Post image to Facebook (using the Javascript SDK)
FB.api('/me/photos', 'post', {url:'http://www.my_image_hosting_server.com/2342234234.png'});
4) Execute an open graph api call to tell the world Joe Smith added a photo using AcmeApp
Step 4 is where I desperately need some help. Do I execute another FB API call of some sort or am I trying to use open graph in a way that it wasn't designed for?