Now, I want to add multiple recipes that users can refer to while publishing stories. How can I do that using APIs?
You don’t do that using the API.
Open Graph objects are basically just URLs refering to pages that have the appropriate OG meta tags set.
So just set up these URLs on your site – you can do that manually, if you like, or make it something database-driven, where there’s just a parameter in the URL that let’s your script pull the appropriate data from some table and have it populate the OG meta tags with that data.
Then, when publishing an action, you just give the URL of one of those objects as the parameter – Facebook does the rest, it “scrapes” the URL and pulls the data from there.
The way you’re doing it now, using http://samples.ogp.me/467564296596508 – well, that’s as the URL says basically just for samples. When publishing “real” actions, the objects should be real objects as well – that is, objects on your site with URLs pointing to your site.
And use the Facebook Debugger to check your objects (and fix any problems it might find) – that helps preventing problems you might run into as a beginner on the subject.