vimeo implementation on Phonegap - json

Does anyone know which API that I need to use for vimeo implementation into phonegap ios/Android app. I'm looking at both the simple and advanced API. The simple one seems to have no player implementation, I can only fetch data about my videos. I want the video to play within my application. The advanced api seems to have some player implementation but also looks like I need to authenticate users. I'm kinda lost in all of this. Any help would be greatly appreciated.
Thanks in advance!

Check out this plugin solution:
http://simonmacdonald.blogspot.ca/2011/11/video-player-plugin-for-phonegap.html

the Iframe share is just fine with PHONEGAP.
If u need to change the player you need a VIMEO pro account and Advanced API
If you want to restrict your videos from public then u need Advance API

Related

How to display a notification in adobe air for android

I want to display notifications in my Adobe Air App for Android using Adobe Flash and Action Script 3.0 .
I want to use notifications for reminding people to update my app when a new version gets released, so how do I do this?
Thank you.
As DefinitelyNotAPlesiosaur has mentioned, using an ANE is the way to go.
You can find some free ANE's to use here:
http://www.riaxe.com/blog/200-adobe-air-anes/
but I would highly recommend district as they publish multiple well documented ANE's with example files and offer excellent support.
http://airnativeextensions.com
It sounds like you would need either Notifications or Push Notifications if your message was to appear when the user is not using the app, or Dialog if the message appears whilst the user is using the app.

How can i delete a video from my vimeo account using vimeo API

I have impelemted a single user application. So I'm hard coding the access token in my code itself. I'm able to upload video to my vimeo account.
Now, I would like to be able to delete a specific video from my account using VideoId.
How can we achieve this ?
does vimeo support deleting a video ?
I know that we can do it using the old API (v2) https://developer.vimeo.com/apis/advanced/methods/vimeo.videos.delete
But how can we achieve the same with the new API ?
Any help would be greatly appreciated.
The description for how to delete a video with their current API is here:
https://developer.vimeo.com/api/endpoints/videos#DELETE/videos/%7Bvideo_id%7D

Which VIMEO API to use for our needs - web based help "tutorials"

We have a web based system that we are looking at replacing our existing "help system" from uploading flash videos directly to our website to instead "embedding" content we upload to our vimeo account. We have setup a vimeo pro account and these videos need to be "private" i.e. not accessible to the general public. Which API version should I use? And do you have any sample code in say PHP I could take a peek at with the functionality we are after
The Advanced and Simple API's will no longer receive new features, and soon you will not be able to create new apps for them.
Vimeo has moved towards a unified API, which you can read about at http://developer.vimeo.com/api. Make sure to use the api through api.vimeo.com, not vimeo.com/api/rest/v2.
Vimeo has an official PHP library, with some very basic examples that you can see at http://github.com/vimeo/vimeo.php

Upload Video to Facebook from AIR app

Developing an AIR based app that captures video. The user will then be able to upload to facebook if they so choose.
Right now I am confused about the requirements in uploading videos to facebook.
Even though this is technically NOT a facebook application, will I need to create a Facebook application ID?
Will I also need to make use of the facebook-actionscript SDK?
I've read elsewhere that the API needs to launch the Facebook login within a web view.
Or are there alternatives in my case?
Even though this is technically NOT a facebook application, will I need to create a Facebook application ID?
Yes.
Will I also need to make use of the facebook-actionscript SDK? Or are there alternatives in my case?
Talking to the API works over HTTP – so you can use any technique that allows you to make HTTP requests.
But using a framework/SDK that already has methods for usual FB API stuff will be much simpler, than handling all that HTTP stuff yourself.

build adobe air to use YouTube API v2.0

I'm trying to use YouTube API v2.0 to let users authenticate into their YouTube account and be able to upload videos from there... but I want to do this application in AS3 as an adobe air application.
I searched the api but I couldn't find any proof that I can do this with AS3? thought to drop a line here and ask if it's possible at all? specially being able to upload videos through the adobe air desktop app?
If possible, is there any link you could give me to get me started faster?
This appears to be a google code project written in as3 that supports uploading videos in desktop air apps (see the example AirYouTubeUploaderSampleApp).