Is Google BigQuery API usable in Unity? - unity3d

I was reading this documentation but I'm not sure how to integrate the client library to a Unity project: https://cloud.google.com/bigquery/docs/reference/libraries#client-libraries-install-csharp
I would like to know if it's possible to use Google BigQuery API in Unity.
Thanks

Related

Google Fit REST API and Unity

I have a game developed for me in Unity. The game pulls steps, blood pressure and glucose data. So far my developer have been able to pull health data from Apple Health Kit, but they are stuck with Google Fit. Does the Google Fit REST API work with Unity? Will I need my to create a plugin? Sorry, I have the code, but I would know what to show. I could ask my developer if that is needed. Thank you!
This is a great feature to extend Google SDK to the Unity platform. The official libraries do not exist yet, but suggested workaround is to use REST API. You may start working around with Google Fit API on the official docs. You can opt to use OAuth Playground or any API platform to start with. Once you establish communication with Google Fit, try to make a call between a client and a server with the help of RESTful API in Unity.

Google cloud platform for unity games

I am planning to use Google Cloud Platform features like Cloud Speech-to-Text, Cloud Text-to-Speech, Cloud Video Intelligence, Cloud Sentiment Analysis, and Cloud Vision in my unity games. Is there any UNITY SDK available for the above mentioned features.
If not what is the other way to use the above mentioned functions in my Unity games?
Thanks
With respect to Unity, you can look at the following list of integration tools related to Google Cloud products.
If you are not willing to purchase them or want to come up with your own solution, you can make API calls to the desired Google Cloud services.
Its is also possible to use C# client libraries for Google Cloud Video Intelligence, Google Cloud Vision, Google Cloud Natural Language, Google Cloud Speech-to-Text (there is no C# client library for Google Cloud Text-to-Speech yet, therefore API calls are the only option right now).
you can also look at this assets: Frostweep Games - Google Cloud Machine Learning Plugins

Google cloud storage integration in iPhone App

I'm developing an iPhone Application where I want to integrate google cloud storage so that I can store images. Please anyone can help me or provide me the link of sample. I tried searching but could not find.
Thanks
I recommend using the Google APIs Client Library for Objective-C. It uses the JSON API. You will need to enable the JSON API by visiting the Cloud Console, clicking APIs, and enabling the "Google Cloud Storage JSON API"
There is no specific library or sdk for Cloud integration but there is a web based interface you can integrate for google cloud. you'll have to read about it a little. here's the link
https://developers.google.com/storage/

Implement google earth in iphone?

I am implementing one iphone applicaiton in which I want to implement google earth.
I have done research on net for google earth for if any google earth api available or not.
But I have not found sucess.
Can you advice me is it possible to implement google earth in our applciation.
Please advice me for this.
Thanks in advance
I would suggest downloading the Google Earth app from:
http://itunes.apple.com/us/app/google-earth/id293622097?mt=8
However, if you still want to build an app, the Google Earth API documentation lies at:
http://code.google.com/apis/earth/
Google does not provide any API specifically for iPhone. This API is in JavaScript.
Reference

zend framework & google analytics data

How can I use zend framework to export google analytics data into my application? I've used other Zend_Service_GData before, but can't find any documentation how to apply it to google analytics?
Is this possible?
There is no official library for google analytics, but you could have a look at:
http://framework.zend.com/wiki/display/ZFPROP/Zend_Gdata_Analytics+-+Daniel+Hartmann
It hasn't been updated in a while, but I've used it without problems before.