Vimeo follow button direct url - vimeo

Is there a direct link to Vimeo follow? (follow channel, user... etc).
Right now when you visit some channel for exmaple, you have the ability to press follow button. I would like to link to this url and if the url is clicked on my website, it would open the url and automatically follow (or as youtube offer to follow)
Like Youtube has for example by adding "?sub_confirmation=1" at the end of url?

Related

i want name of the platform (facebook, twitter etc) from where visitor comes to our page in angular

Our web page is in Angular 6.
I will share my web page url in facebook, twitter etc.
Now i want to determine from which source visitor has landed to our page.
for eg: if a facebook user clicks our web page link and redirects to our page, t hen there should some info which shows previous url (i.e. facebook url)
You have to hope that there is a http referer header. Its more likely to work if you make custom referrer links of your own, so say your URL on facebook being 'http://your-site.com?referrer=fb` or something like it.

Embedding YouTube thumbnails

I have a question about embedding YouTube videos on a new website I'm working on.
It is a collection of livesets from different festivals around the world. Each embedded video has its own page, but on the overview pages I use the thumbnails mqdefault.jpg/hqdefault.jpg,etc of the different videos. If you click on them you navigate to the page where the video is embedded. Is embedding the thumbnails this way allowed (directly linking to YouTube)? Embedding the video is ok if embedding is enabled, but I can't find anything about the thumbnails. I can retrieve the url with the YouTube API (or just guess it) so I presume it is not a problem.
You are dependent on static url scraping are not supported. They can get changed and you may need to change your application at everytime.
For this you should use Data API v3. You should go with a videos->list request with id=videoId and part=snippet. In the response you will check snippet.thumbnails.['high'].url
Upload Thumbnail example also lists the thumbnails. However, I use static url from google. I use
https://ytimg.googleusercontent.com/vi/<insert-youtube-video-id-here>/default.jpg
It work as same as othet static url. But if you don't want to change url of thumbnail every time static url change you can go with that. I use youtube for example very limited time and only for teaching how its work. But for your site you should use api. Hope it helps you.

as3 check if youtube link exists

I want to give users of an app the possibilty to post a video from youtube by entering an url in a textfield. To ensure that the link exists, I want to check the url.
I only found examples to check if an external file exists but not how to check a simple www link. How can I check this?
Youtube doesn't really have a 404 page, so you'll always end up loading a page...
I don't know how you'll be loading the page...whether javascript will come into play once the page is loaded and take the argument of the video id...
But if all that goes through.... You'd want to look for this sniped of data in this div to determine whether or not the video exists.

How Google redirector link or 2.bp.blogspot link generated from http://*.googlevideos.com/*?

This link : https://r9---sn-cvh7zn7s.googlevideo.com/videoplayback?id=10bc30daeba89d81&itag=22&source=picasa&requiressl=yes&mm=30&mn=sn-cvh7zn7s&ms=nxu&mv=m&pl=19&gir=yes&clen=28147982&dur=186&lmt=1439597374686662&mime=video/mp4&mt=1439599172&ip=115.187.58.15&ipbits=0&expire=1439628005&sparams=ip,ipbits,expire,id,itag,source,requiressl,mm,mn,ms,mv,pl,gir,clen,dur,lmt,mime&signature=5F12A9860DCBD622A1E7CBFFECAB28789FD4C1D2.461477172E2BDF3F55AA0A13A63CBA7C06FFAA1A&key=ck2
redirects from this link: https://2.bp.blogspot.com/bO0q678cHRVZqTDclb33qGUXve_X1CRTgHMVz9NUgA=m22
I want to know how to get this redirect link to go to my google drive videos.

Facebook share link content

I have a share button on my website, I understand that the link is www.facebook.com/share.php?u=myurl. And everything works fine, but how do what it says when you click it, right now it shows my website and then "Coming Soon - Future home of something quite cool"... I did try adding &t=mytitle but nothing changed. Bellow is a screenshot. Thank you.
I'll start with informing you that the facebook "sharer" has been deprecated and is no longer supported as it states here:
The Share button has been deprecated in favor of the Like button, and
will no longer be supported. Please use the Like button whenever
possible to drive maximum traffic to your apps.
And here:
What happened to the old Share button?
We deprecated the Share Button when we launched the Like button,
because the Like button improves clickthrough rates by allowing users
to connect with one click, and by allowing them to see which of their
friends have already connected.
You should use the Like or Send buttons instead.
As for the content that is being presented in the feed, you can control that by adding open graph tags to the page you wish users to share, when facebook crawls your page it extracts those tags and creates the feed story.
In order to debug and see how facebook "sees" your page you can use the Facebook Debugger which will also clear the cache facebook already has for your page.