Use tag 'share' instead. Tag 'share' is for questions about sharing resources in (local, and social) networks.
Questions tagged [sharing]
1217 questions
9
votes
0 answers
Share streaming video URL in android via ACTION_SEND
I need to share a video URL (not YouTube's) through a 3rd party application like Youtube, Gmail, etc. I have a link to a .mp4 or .m3u8 file on my server and I show it on a VideoView succesfully but I also have a sharing button on same activity which…

Gilad Eshkoli
- 1,253
- 11
- 27
9
votes
3 answers
Facebook shareDialog doesn't show anything
I'm trying to share some content's on facebook but i have a lot of problems.
i've add the correct keyhash, and created the app on facebook and put it live.
When i try to share something it seems good as you can see:
But after i've clicked on post…

Giacomo De Bacco
- 723
- 6
- 26
9
votes
2 answers
Facebook showing page not found when sharing link
I'm sharing content from a website and every time I paste the link into Facebook it says 'page not found'.
Sometimes it works when I manually add the 'www.' in front of the URL in the address bar.
EXAMPLE
Shows page not…

user2968617
- 137
- 1
- 1
- 9
9
votes
4 answers
Sharing from Windows Phone 8
I am working on a Windows Phone 8 app and am trying to share content through the DataTransferManager. The Windows API documentation says it is supported in Windows Phone but when the DataTransferManager.GetForCurrentView() function is called I get…

ellemayo
- 3,258
- 2
- 20
- 30
8
votes
2 answers
UICloudSharingController shows infinite activity indicatory in Xcode 11
I have the following code to import the UICloudSharingController into swift UI but when integrated the first time up it just shows an activity indicator that never stops and then the second time it is presented (via .sheet), there is no activity…

Congruent Tech. UG
- 1,408
- 2
- 12
- 21
8
votes
1 answer
iOS App-to-App Trasnmission of Data using new Document Support API
Problem:
Building Enterprise Applications of a Suite Nature, and need to be able to pass data from one application to another. Example: App1 is a barcode reader that produces and inventory list. App2 needs a "fresh" copy of the same inventory…

Newbyman
- 1,144
- 10
- 14
8
votes
1 answer
Share Image to Twitter without Card
Given an image at a certain address, http://www.thissite.will/never/be-finished.png, what's the easiest way to share it to Twitter, preferably without a card?
Users customize an SVG, and when they're satisfied, I convert it to a PNG and store it on…

Randoms
- 2,110
- 2
- 20
- 31
8
votes
2 answers
how to share gif images using intent sharing to available apps?
i want working on sharing .gif with available apps like whatsapp, but unable to get valid Uri of gif present in my drawable resource.
Uri path = Uri.parse("android.resource://my_package_name/" + R.drawable.gif_1);
Intent shareIntent = new…

Electro
- 395
- 4
- 16
8
votes
1 answer
Object Sharing Between Activities in Android
Hi I have a question about passing an object throughout the app.
Say I want to have a big custom object throughout the app.
This object will be used by multiple activities and services.
What I did at first is this.
First, I created an Application…

user2062024
- 3,541
- 7
- 33
- 44
8
votes
5 answers
Sharing text as a string to another app
I have a string that basically looks like this:
Scores:
Player One: Score
Player Two Score
Player Three: Score
I want to share this as text to apps such as WhatsApp, Facebook, iMessage, etc. What is the best way to do this? I have tried sharing as a…

Dale Townsend
- 671
- 3
- 13
- 25
8
votes
2 answers
Is it possible to add a link to download a file that can only be downloaded by sharing it on Facebook?
Is this scenario possible?
Customer goes to my website, wants to download a PDF technical document that interests them, they click the Download button and a Facebook share window appears to log them in to share it to Facebook. Once they click Share…

Ian Walker
- 103
- 2
- 7
8
votes
1 answer
Subclass and using UIActivityItemProvider with UIActivityViewController
I finally find someone who was facing the same problem than me.
UIActivityViewController customize text based on selected activity
I want to customize the content share with the activities of the UIActivityViewController. The good answer is the…

Astral Walker
- 113
- 1
- 1
- 6
8
votes
3 answers
Attach object using iOS6 UIActivityViewController
I'm migrating to use the UIActivityViewController for sharing in iOS6, but I can't figure out how to create email attachment objects to be included when sharing by email.
The corresponding code in iOS5 is:
MFMailComposeViewController *picker =…

Setomidor
- 954
- 9
- 15
8
votes
1 answer
Sharing Model code between Sinatra and Rails
I have a Sinatra application that responds to api calls, and a Rails application that handles the reports and all the pretty stuff like graphs and the website. Both need to have access to a common set of models (e.g. Accounts, Sites, etc.)
My…

parasquid
- 157
- 8
7
votes
1 answer
iOS sharing 'global data' across view controllers
I have been using app delegate as a "global bucket" to share data between various view controllers. Typically I do something like this:
My_AppDelegate *appDelegate = (My_AppDelegate *)[[UIApplication sharedApplication] delegate];
And then, I would…

geekyaleks
- 1,281
- 3
- 18
- 29