user3293835
user3293835

Reputation: 899

How to also include my app's name while sharing content?

user can share a link from inside my app:

ShareLinkTask linkTask = new ShareLinkTask();
linkTask.Title = "I like it";
linkTask.Message = "I love this movie";
linkTask.LinkUri = new Uri(link, UriKind.Absolute);

linkTask.Show();

problem: I want to include my app's name too something like this sent by my awesome app!. If I append this to Message user can remove it. How can I add my app name without user be able to remove it? thanks.

Upvotes: 0

Views: 31

Answers (1)

Johan Falk
Johan Falk

Reputation: 4359

This is not possible with the built in share tasks, probably to protect the user from an app posting text without permission. To get this functionality you will have to implement it by working directly with the Facebook, Twitter, etc. APIs.

Upvotes: 2

Related Questions