hangout

Publishing Google Hangouts App

帅比萌擦擦* 提交于 2019-12-06 03:43:11
问题 I followed the following steps: Verify your account at Chrome Web Store by going to Chrome Web Store Developer Dashboard and clicking the "Pay this fee now" link. Fill in the fields in the Google Developers Console by following the instructions at the Google Developers Console fields. Create a client ID. If you haven't already, you must create an OAuth 2.0 client ID in your Google Developers Console project before your app goes public. Hangout button, placing the button on your website. Users

Can't publish a Hangout app (extension)

霸气de小男生 提交于 2019-12-06 01:31:20
问题 I've created a Google Hangout extension app, tested it works privately etc and now I'm trying to publish it. I have followed the instructions here: https://developers.google.com/+/hangouts/publishing I've filled in the forms correctly, created the O-Auth client ID, filled out the consent form etc. When I tick the Make this application public tickbox and try to save, a server error message pops up along the lines of: Server Error Whoops! Our bad. Please try again. If the problem persists,

Using Google+ Hangouts API

我与影子孤独终老i 提交于 2019-12-05 12:54:19
问题 If someone adds bot@mydomain.com to his Google Hangout contacts and sends it a Google+ Hangout Chat message, I want to set up an automatic reply to his chat from my server. Is there a way to do that?? I think Its possible using the Google+ Hangouts API but I cannot figure out how. (mydomain.com uses Google Apps for Business) 回答1: Here's what you're looking: https://developers.google.com/+/hangouts/api/gapi.hangout.data Here's the event for message recieved: (callback) https://developers

invite participant in hangout

喜你入骨 提交于 2019-12-04 13:46:02
I am creating a basic hangout API. Is it possible to send invitation to specific emails I have through API itself. I can invite more if I want from hangout page though. Any suggestion? There is no invitation component of either the Hangout or REST APIs, however this does not stop you from sending out emails using other means and providing the URL to the hangout. Another trick I've done is to get the URL with gapi.hangout.getHangoutUrl() and post these back to your server (or over websockets.) Then, you can create a simple url to see these "rooms." Of course, you can choose how you send those

Google Hangouts website button

こ雲淡風輕ζ 提交于 2019-12-04 13:04:15
问题 Is it possible to add a Google Hangouts button to my business site that when clicked on initiates a call to me? I have a business website and I would like for anyone to be able to call be like the Skype button that you can embed on your website page does. Problem that I have is I went to https://developers.google.com/+/hangouts/button and read and then went to the Google API Console at https://code.google.com/apis/console/ and turned on the Google+ Hangouts API and then added my Google+

Can't publish a Hangout app (extension)

心已入冬 提交于 2019-12-04 04:49:22
I've created a Google Hangout extension app, tested it works privately etc and now I'm trying to publish it. I have followed the instructions here: https://developers.google.com/+/hangouts/publishing I've filled in the forms correctly, created the O-Auth client ID, filled out the consent form etc. When I tick the Make this application public tickbox and try to save, a server error message pops up along the lines of: Server Error Whoops! Our bad. Please try again. If the problem persists, please let us know using the "Send feedback" link below. Thanks! Tracking Number: XXXXXXXXXXXXXXXXXXXXXXXXX

Using Google+ Hangouts API

房东的猫 提交于 2019-12-03 22:32:17
If someone adds bot@mydomain.com to his Google Hangout contacts and sends it a Google+ Hangout Chat message, I want to set up an automatic reply to his chat from my server. Is there a way to do that?? I think Its possible using the Google+ Hangouts API but I cannot figure out how. (mydomain.com uses Google Apps for Business) Here's what you're looking: https://developers.google.com/+/hangouts/api/gapi.hangout.data Here's the event for message recieved: (callback) https://developers.google.com/+/hangouts/api/gapi.hangout.data#gapi.hangout.data.onMessageReceived And here's the event for sending

Google Hangouts website button

删除回忆录丶 提交于 2019-12-03 08:56:42
Is it possible to add a Google Hangouts button to my business site that when clicked on initiates a call to me? I have a business website and I would like for anyone to be able to call be like the Skype button that you can embed on your website page does. Problem that I have is I went to https://developers.google.com/+/hangouts/button and read and then went to the Google API Console at https://code.google.com/apis/console/ and turned on the Google+ Hangouts API and then added my Google+ profile and my Project ID (app_id) and entered it into the html markup example(s) and embeded the code into

Starting a hangout with a list of users invited

放肆的年华 提交于 2019-12-03 03:48:11
I have a website where is discussion is happening among some people with valid gmail ids. If one of them in the discussion clicks on the google hangout button, I need to start a hangout with the list of users in the discussion invited already i.e. I need to avoid the Add Participant popup that comes up when the hangout app is opened. Is there a way to do this? I explored the documentation and I couldn't find any API to invite a participant. To the best of my knowledge (and more than willing to be corrected), there isn't a way to trigger a hangout with a set of participants. There is a bit of a

how to share drawable image via viber and google hangout?

左心房为你撑大大i 提交于 2019-12-02 12:06:58
my code works fine when i share a image via whatsapp....but for viber , google hangout im getting "can't find photo" error. this is my code : int ImageResourse=imageAdapter.mThumbIds[position]; Uri path = Uri.parse("android.resource://dragonflymobile.stickers.lifestickers/" + ImageResourse); Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND, path); ((Activity)getActivity()).setResult(Activity.RESULT_OK, shareIntent); //set the file/intent as result ((Activity)getActivity()).finish(); //close your application and get back to the requesting application like GMail and WhatsApp i