I'm writing a web app in Dart, I'd like to be able to use it inside a
Google+ Hangout too. It seems that the Hangouts API is specified with
a Javascript interface, with no RESTFUL web API available. Here's the
link:
https://developers.google.com/+/hangouts/reference
Is it possible to do this at all with Dart? Reverse engineering the
interface from the js file would probably take too long for it to be
feasible, especially with a moving target. If I really wanted to be
able to use it as a Google+ Hangouts app, then I would have to go back
to js which is something that I really don't want to do.
What other options are there?
Brendon