Facebook share only image - facebook

I am developing a website where users have the possibility to generate image. I want them to be able to share this image to facebook directly on my page using share button. Not as an article, but as an actual image. Is this possible?
Additionally, as a bonus, is it possible to prompt them option to create a seperate album for it? Since they may share tens and more of these images, it would be good if they wouldb be located on a seperate album or something, so they wont bury other images.

If it is a website, generally you share the webpage/article. There are many types in the opengraph format including ones for video and music. You should read the documentation. If you want the image to uploaded to a user's picture section, I'm not sure that is possible, I think you can only put stuff on a user's timeline. You should have also searched first as there is a stackoverflow question about this already.

Related

Large links preview in facebook walls

Please have a look at the following images:
As you can see these two links both send to an external website but, the big link misleads the user into thinking that it is a picture, therefore boosting clicks, likens and shares on the item.
On the other hand the second picture is generated using the traditional sharer.php feature. Does anyone know how to get a large image for link previews? Or is it something achievable only via paid advertising? (I am not sure about this one, that big link is just a blog post, no reason for paid ads)

Use Facebook to share albums/pictures with a page

I don't know if it's already possible but I am trying to implement a "sharing system" on my site. Basically I have a blog and I want to add a section where people can share one picture or one entire album so it can be visible on the site itself.
Since I don't want to re-invent the wheel, I would love to do that via Facebook. I already have a Facebook Page for my site, so it would be really interesting if users could directly share the photos they already uploaded via Facebook with my existing page. I thought about using "tags" but it's too limited for what I wanted to do.
Anyone can help ?
Facebook didn't allowed to use the feature of shared albums (https://www.facebook.com/help/151724461692727/) in SDK, so you need to find an alternative.

Programming Facebook "Status Sharing" Features for a CMS

I'm working on some new features for a CMS, and I'm having trouble finding the information about how Facebook interacts with other websites. If turn key solutions exist for this I'd love to hear about them, but I'm basically just looking for pointers to documentation of how this stuff works behind the scenes. Including php, wordpress, and drupal since those are the base technologies I'm working with, but other platform solutions are welcome.
When you paste a URL into Facebook's "What's on your Mind" box, Facebook will automatically fetch a short page description, as well as a list of possible thumbnails. If there's a video it will often auto-generate the needed HTML to embed the video. I've also seen features where you link to a business's main website, but then are prompted to "like" their Facebook page.
How can I, as an independent website owner, have my pages reacts to Facebook in this way. For example, on the following page (link to a personal website) I have four images. However, if I drop that URL into a Facebook status update, there are no thumbnails for those images.
Also, while I've inferred several features of the notification box, I'm curious if there's other's I'm not aware of.
Again, while turnkey solutions and existing plugins are of interest, what I'm really after is what sort of meta data I need to embed in my own page, or what special responses I need to make to Facebook requests. In other words, how do I program a website to response correctly to Facebook.
Basically you convey that information to user in terms of open graph meta tags. From that Facebook picks up what type of site it is. Is it about a book or some music or some commerical brand or may be has a FB page linked to it? Check this documentation for general idea about graph objects - https://developers.facebook.com/docs/opengraph/using-objects/
Coming to specifically the image used as thumbnail, it is specified with og:image meta tag. Important thing to note about it is that FB caches that for ~24hours so don't sweat it if it doesn't show up. You can use this tool to check for your values which fetches it in realtime - https://developers.facebook.com/tools/debug
Also Facebook happens to have quite a lot of bugs around this, so it might take really long before it start showing up. If its picked up debug tool, then you are fine at code level. Not much that you can do about it.
I happen to know about this as I authored a tiny WordPress plugin for that and boy I know the support requests that used to come in. http://wordpress.org/extend/plugins/facebook-like-thumbnail/
Now for 3rd part of your question, even this is specified through meta tags only, like you have primary video content on your website, and you would like it to embed on Facebook when someone puts a link in the status box, so for that this link has code samples http://garethhooper.com/articles/social-media/45-integration/166-how-to-embed-your-own-videos-on-facebook-using-the-facebook-like-and-share-buttons.html
Hope that sets you on track giving you a head start :)

Is it possible to share and see a link using ShareKit in iOS(need the exact way as Web)

I have an app and I am using ShareKit for sharing in Facebook. I am able to share URLs, images and texts to FB using that. But why did the link/url share do not work the same way as when I share a url from Web Facebook. I have got many contents like image in my url and while doing the Share through web I am able to see the image and a small portion of content, but while I am doing it from iPhone using ShareKit, it just gives the heading/title and we need to click on that link(no images or contents).
If anyone know the solution, please help.
When you share a link on the Facebook site it will automatically fetch the URL and display some appropriate images that you can choose from. However, when directly interacting with the API this won't happen. You must provide the image yourself (or Facebook may use the image associated with your application). ShareKit may abstract this away from you, so you might want to look into using the Facebook SDK and Graph APIs directly.
I fixed the issue. Instead of posting(POST) the attachment dialog, just use GET method in the load function and pass the link you want to share. :)

Uploading image to Facebook and including it in feed post from iPhone App

I was working on an iphone app where users create images (think like a paint program); then they have an option to post it to Facebook: the image would be uploaded to the users albums and simultaneously a post would appear on their stream ("Hey, look what I just made with app X, get it here; etc).
This used to work just dandy, but it seems that Facebook no longer allows images hosted on their domain to be used in stream posts: FBCDN image is not allowed in stream is the error message.
Anyone have a workaround method for doing this kind of "upload and stream post in one shot" kind of thing? I know I could have the users upload all their created images to my own server and use that in the feed post...but that should be totally unnecessary. It shouldn't require an extra server for a user to draw a picture in a paint app and then upload to FB with a corresponding feed post about it.
Thanks!
I posted a similar question and learned that it's now a 2-step process where you upload the image to an album, then include a link to that in the feed. The answer is complicated, so please check over at that link. If you find it helpful, please up-vote that answer. (Feel free to up-vote/accept this one, too, but I understand that's sort of cheating ;)