Are you talking about something like this?

That's possible through Open Graph Objects and Actions. Here's a brief (and hopefully not terribly confusing) breakdown:
Object: In the image above, the object is "pet who needs a home". An object is text to describe the page you happen to be sharing, and is referenced in the header tags of the page you're sharing (more on that soon.)
Action: In the above image, refers to "shared" in the "... shared a pet who needs a home...". Actions are whatever it is that you're actually doing with open graph. I've seen sites "sign a petition on so-and-so" or "play such-and-such a word on this-and-that app". The bolded words are the action.
Both actions and object types can be defined on http://developers.facebook.com. If / when you have an app, and you opt to use Open Graph, it encourages you to create at least one action and one object type. There are a number of predefined ones ("reading a book", "cooking a recipe", "watching a video", etc...). Actions and objects help you personalize the messages you post to people's walls.
It's worth noting that if you define a custom Action, Facebook needs to approve it before they're willing to let just anyone use it. Normally it's not terribly difficult...you just have to click on a "Submit" button next to the Action and it will tell you if / when it gets approved.
So now we've gotten the basics out of the way, let's talk about how to implement something like this on your pages. As I'm sure you're well aware, Open Graph makes use of FB.api() instead of FB.ui(). I'm going to use a Javascript example here.
FB.api(
'/me/app_namespace:share',
'post',
{
pet_who_needs_a_home: document.location.href,
image: pet_image // optional
},
function(response) {
// You can do something with the response here.
// If successful, Facebook returns the post id of the post it just made
// If it fails, check response.error
}
);
There's also two very important tags that you need in your <head> tag. And here they are:
<meta property="fb:app_id" content="YOUR_APP_ID" />
<meta property="og:type" content="APP_NAMESPACE:pet_who_needs_a_home" />
Now let me talk you through what everything is. FB.api() is rather obvious so I'll skip onto...
'/me/app_namespace:share',
/me is posting to your wall. app_namespace is the namespace found in your app details section on developers.facebook.com. You may need to define a namespace (settings->basic->second text box). the ":" breaks the namespace and action. Share is the action (defined, again, on developers.facebook.com).
'post',
Tells Facebook that we want to use a POST request (as opposed to a GET request).
{
pet_who_needs_a_home: document.location.href,
image: pet_image // optional
},
This is (obviously) a javascript array of two important values. "pet_who_needs_a_home" is the (actually my...you should replace that with whatever yours is) object type (still on developers.facebook.com) which, as you recall, helps us define the language used, like in the image above. Image is an optional field in which you can define the image that will be shared through open graph. There are a slew of other optional fields that you can check at...you know.
function(response) {
...and all that is kind of obvious so I'll spare the pointless details there. As I mentioned in the comments, it returns either the post id of the post if successful, or an error (found in response.error) that may or may not be descriptive.
The meta tags, I hope, speak for themselves. YOUR_APP_ID is...you guessed it...your app ID. All numeric. app_namespace is your namespace, again. pet_who_needs_a_home is (my) object and should be replaced with whatever object you happen to be using.
Sorry for the long post. Hopefully that sort of cleared that up a little bit.
shared_storytype vs.app_created_storytype for thestatus_type– phwd Oct 15 '12 at 15:50