You don't need to register for Blip.TV to get the login and password. When it prompts you for a username and password, read the description in that prompt, it has the username and password in it. They do that to prevent SPAM.
Cheers, Nate On Fri, Jun 19, 2009 at 4:55 AM, Fabio Pinatti<[email protected]> wrote: > hello! > > @Nate: Thank you so much by the so clear explanation.. I don't have much > experience with JSON and that's why I didn't get it if blip.tv was possible > through flash.. but your last emails were great, and a great step to learn > it.. About google, well, I really agree with you that it needs to be the > first tool to everyone, since a lot of people are really lazy.. the point is > that I didn't get the files and process to do in my case, and that's why > I've posted in that forum.. thank you so much, Nate! > > @Muzak: I saw that they require a login/pass, and now I know that can be > possible use the api from flash, I'll dig for register and get a login info > to me and check it better right now.. thanks Muzak! > > On Fri, Jun 19, 2009 at 4:37 AM, Muzak <[email protected]> wrote: > >> Their API is explained here: >> http://wiki.blip.tv/index.php/Blip.tv_API >> >> username and password are in the prompt. >> >> >> ----- Original Message ----- From: "Nate Beck" <[email protected]> >> To: "Flash Coders List" <[email protected]> >> Sent: Friday, June 19, 2009 5:17 AM >> Subject: Re: [Flashcoders] blip.tv api? >> >> >> >> To try and make this a little more clear. You're basically requesting >>> the information from their webservers using a customized url. >>> >>> A RESTful service you can actually use from a web browser, for >>> example... on Twitter Search you can get your results in JSON by doing >>> this. >>> >>> http://search.twitter.com/search?q=iPhone >>> >>> turns into this: >>> >>> http://search.twitter.com/search.json?q=iPhone >>> >>> Which will return the data your looking for in a format called JSON >>> (JavaScript Object Notation). >>> >>> So to clarify on what I said earlier. You can get this data into your >>> flash application using URLLoader. Just set the URL to where the JSON >>> data is and then request it. >>> >>> When you get a result back, you will have a REALLY long String of data >>> that you want to drill into. That's where as3corelib and it's >>> JSON.parse() method steps in. You pass JSON.parse() a String and it >>> returns an Object. >>> >>> You can then drill into that Object to get the relevant data that you >>> need. >>> >>> Those Java and Ruby files are just wrappers for making calls to >>> Blip.tv web services. Unfortunately there isn't a wrapper (library) >>> for ActionScript. >>> >>> Hopefully that makes it a bit more clear, I wasn't trying to be rude >>> earlier, after re-reading my emails I may have come across that way. >>> I apologize. >>> >>> Cheers, >>> Nate >>> >>> >> _______________________________________________ >> Flashcoders mailing list >> [email protected] >> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders >> > > > > -- > Fabio Pinatti > :: web.developer > :::: www.pinatti.com.br > :::::: 19. 9184.3745 / 3342.1130 > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > -- Cheers, Nate ---------------------------------------- http://blog.natebeck.net _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

