I want to find way sharing text message to Instagram Direct. I already find URL scheme in Instagram dev doc, but there is no one word about sharing to direct. I also check some third part libraries - nothing helpful. If sharing to Direct is impossible with using URL scheme, maybe you know another way for this. Thanks for all advice.
Unfortunately this is not possible but other alternatives you could try is to screen shot you text messages or copying and pasting your messages in Instagram direct and sending them.
I hope this has been helpful.
A Bit Late To Answer (Aug 2022)
This is a similar topic that I answered earlier, I was successfully able to achieve the solution, please refer to my solution on the link: https://stackoverflow.com/a/73213888/4360419
Precisely, there is a deep link available to solve this,
instagram://sharesheet?text={anyThingYouWantToShare}
Related
Am using xamarin.iOS, I want to open a particular page in my app from an URL which is sending by any e-mail, what is the method to this? I heard about deep linking of applications is this the perfect solution for this scenario? anyone help me to find a perfect solution
Yes, deep linking is the topic that you should be looking into. Refer to
https://developer.xamarin.com/guides/xamarin-forms/platform-features/deep-linking/
You can also read more on different methods here: https://blog.branch.io/universal-links-uri-schemes-app-links-and-deep-links-whats-the-difference/
You can even consider to pay for a service from branch.io for this linking infrastructure.
Use App Links and do the magic on the magic OpenUrl override method
https://developer.xamarin.com/recipes/cross-platform/app-links/app-links-ios/
I need to provide people with a URL link to some of my Youtube videos, but I don't want Youtube to then automatically display some random video that it thinks should be "up next". There's nothing more embarrassing than trying to show people your work and then up pops a ridiculous video that they think must be yours as well.
I've tried tacking on "&autoplay=false" and "&autoplay=0" to the end of the URL, but that doesn't work.
Anyone know what needs to be done?
You can send people an embed link that shows the video only. I think in your case this would be fine, but for anyone that requires comments, it would be an issue. Also adding ?rel=0 will stop the end card from showing related videos from another users channel.
https://www.youtube.com/embed/OefocRFlDss?rel=0
A list of embed params can be found here: https://developers.google.com/youtube/player_parameters
I guess that's not possible, but maybe you could embed that video via API to some server you own, and disable the suggestions.
Check this documentation for disabling, controls and siggestions.
https://developers.google.com/youtube/player_parameters#autoplay
Or this: http://illuminea.com/remove-related-videos-from-end-of-embedded-youtube-video/
Luck!
This feature does not seem to be customizable from the url; it's more of a user setting. You can find here some details about how to turn it off for yourself but you cannot control the way it will behave for others.
Also, I'm not sure if this question qualifies as a programming one. :)
I am trying to get twitter feeds in to my shopify site. I want to get the feeds and style them as I want and thus cant use a app.
I know how to do it using PHP but can not use that code in shopify and looking for a way I can use OAuth in shopify and get the feeds. I tried the shopify docs but without an example its kinda hard to actually get my head around it.
http://docs.shopify.com/api/tutorials/oauth
Thats the link I am using as a guide. If anyone can direct me to an example which might be similar that would be awesome. (google didnt seem to be that helpful this time either)
Cheers
I know you said you didn't want to use an app, but can I suggest taking a look at Twitify? You can use custom CSS to style your tweets. Also see discussions about Twitify here and here.
Twitter changed their display guidelines and policies on embedding of tweets on websites in June 2013. One of the themes I used for a client earlier in the year had custom styling of tweets, and they have now changed it to use the official Twitter widget to meet the new guidelines. In fact, the images on the Shopify theme store show how it used to look before Twitter changed things:
And after:
I think using an app like Twitify would be the easiest way to deal with these changes to embedding tweets.
Thanx for the suggestion. I did take a look at that before I posted this question. This is a project for a client and I dont think getting a plug in is a viable option. Anyways I found a work around.
Hosted the file on a server and then accessed it. So that resolved the problem. :)
I used node.js to write the script and get the posts as required.
Cheers.
you can use the app for that Twitify https://apps.shopify.com/twitify or you can Embed a Twitter feed in your online store
Go to your Twitter settings.
Click Widgets to open the widgets menu.
Create a new widget, following Twitter's instructions.
Copy the embed code.
Looking for good solution for Twitter login and posting something... but there is no idea for now. How to do it in xamarine( IOS mono has complete solution, but monodroid...) help me please, if somebody knows how to do it.
If you just want to post something then you can easily do this by sending an Intent for use by an external app - e.g. see https://github.com/slodge/MvvmCross/blob/v3/Plugins/Cirrious/Share/Cirrious.MvvmCross.Plugins.Share.Droid/MvxShareTask.cs#L19
If you need a more complete solution then libraries like Tweetsharp have had MonoDroid ports/branches at various times, but I don't know the current status of any of these.
You might also want to take a look at Xamarin.Social. This component will let you tweet from your Xamarin.Android application.
I need a Twitter widget that isn't chunky and disgusting like the official one (http://twitter.com/about/resources/widgets/widget_profile) and more like this one on some guy's blog (http://kelwynshade.blogspot.com/).
I've checked his source, obviously - and it appears to be part of the Google Friend Connect service, which seems like it aims to solve a lot of problems I just don't have. And by that I mean it's bloated as hell.
Please advise.
Okay, ultimately I determined that I had enough CSS control over the stock widget to make do. If anyone has a better solution though I'd still like to hear it.
I dont know if this helps but u can check the post to twitter app from here:
http://marakana.com/forums/android/examples/67.html
and here
http://marakana.com/techtv/android_bootcamp_screencast_series.html
Hope it helpes:)