Questions tagged [facebook-share]
342 questions
0
votes
1 answer
Facebook Android Sharing a Link Example Missing PERMISSIONS List
I am following the Sharing a link using API calls example on the Facebook Developers site. I am attempting to incorporate the sample publishStory() method into my Fragment. However I am missing the boolean pendingPublishReauthorization and a list…

Brian
- 7,098
- 15
- 56
- 73
0
votes
3 answers
application bar icon button over rides original designer windows phone
im using following code for showing application bar in wp app
…

Bala Manikandan
- 57
- 9
0
votes
2 answers
Share text on Facebook from android app
Hi i need to share text from my app to Facebook i tried this code
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, DESCRIPTION);
…

Abdulrahman S. Alkateb
- 73
- 4
- 12
0
votes
1 answer
Why Facebook share image appears small even when og directs to right sized file
I'm making a Facebook sharer with FB UI. I have og tag:
The image is 1200 × 627. The og debugger doesn't give any errors. However, when sharing the link, share…

Jaakko Karhu
- 2,298
- 4
- 28
- 41
0
votes
1 answer
401 Authorization Required on Facebook Share
I've just created a Thank You page for a completed product purchase and implemented some pretty cool responsive social sharing buttons via http://kurtnoble.com/labs/rrssb/
I'm pretty stoked with the buttons but I'm getting a 401 Authorization…

Andrew-ThinkUp
- 521
- 1
- 7
- 15
-1
votes
1 answer
adding meta og:image property to share custom facebook links using boostrap and flask
I have a website called www.caminemosjuntos.com.ar and I add the facebook share link button but the default preview image is not what I want to show. So I try to add

PabloM
- 29
- 6
-1
votes
1 answer
Creating a list of java strings in Unity C#
I need to create a java list of java.lang.String in order to pass it to a method (for facebook sharing).
public E setPeopleIds(java.util.List peopleIds)
and this is how I call…

geogoe12
- 39
- 3
-1
votes
1 answer
Posting links to FB from Unity
I am trying to post a link to FB in Unity using the FB SDK.
First I used the example given
FB.FeedShare(
null,
new Uri("https://developers.facebook.com/"),
"title",
"caption",
"description",
…

theblitz
- 6,683
- 16
- 60
- 114
-1
votes
1 answer
Facebook share URL is not calling with query paramaters
A facebook share url for my site is for eg:
www.mysite.com?q=123
However, facebook is not calling the url with query parameters i.e ?q=123 is missing.
Is there a way to make facebook to use query parameters

npr
- 4,325
- 4
- 20
- 30
-1
votes
1 answer
Asp.net and facebook share buttom
i have an asp.net web application and i need to add a button that shares content to facebook.
Is there any way to do it ?

user7366890
- 5
- 3
-1
votes
1 answer
com.facebook.share.widget.ShareButton is disabled in Android App
I have a Facebook Share button in my Android App. When I used it with ImageButton or ImageView onClick, it was working perfectly fine in debug mode. But APK Build was getting failed with release type.
I fixed this issue with the help of…

Mohammed Akhtar Zuberi
- 663
- 8
- 25
-1
votes
1 answer
How to style text as bold in facebook feed
I am developing an app where the user can share some text on his facebook account. I tried to bold some sentence using html () and using **. But nothing worked. Any ideas?

Stepan
- 1,041
- 5
- 23
- 35
-1
votes
1 answer
customized facebook share button
I need to make a customized share button, where I can programmatically modify all the components of the share, such as the title, description, and sharing image.
I have tried just the og meta tags, but they haven't made a difference. I tried adding…

jeffdh5
- 75
- 2
- 8
-1
votes
1 answer
Can I show a facebook share counter of my website on other website?
Simple question:
I want to show a facebook share counter from site1.com on site2.com
I think I must to do some changes to data-layout="button_count" . But how to do that?

focusoft
- 82
- 1
- 10
-1
votes
1 answer
Image shared on facebook
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("image/jpeg");
Uri uri = Uri.parse("android.resource://my package name/"+value(passing value of image));
i.putExtra(Intent.EXTRA_STREAM, uri);
PackageInfo…

Uday Patel
- 11
- 1