Is it possible to Create a Google Developer Account for a Google User Group Account ?
Regards,
Alok
No, both are different from each other.
Google Developer Account (Google Play Developer console) is used for publishing Android Apps through Google Play Store by paying one time fee of $25 and on the other side Google Groups is a place to create and participate in online forums and email based groups with a rich experience for community conversation.
Hope you get it!
Related
So lets say i have a meeting/event in which i want only those users which are in my workspace to be able to attend the meeting.
So i want to devise a way which connects their slack and google calendar or google meet or any other application.
When they try to access that event meeting link ( if its happening from google calendar/meet or any other app ), slack should authenticate them. so if they are present in my workspace they should be given access otherwise no
Update:-
The users are not part of organization so they all will be using their personal email.
Basically you can sync the Slack and Google Calendar, to do this:
1.) Add the Google Calendar app to Slack.
2.) Connect your Google Calendar to Slack.
For more details refer to this link: Google Calendar for Slack
About the Access:
Take note Google Calendar and Google Meet are two different Google Apps. As for those who are able to access the meeting link it has nothing to do with the Google Calendar. You can set the Google Meet Settings reference in your Google Admin Console:
Google Meet settings reference for admins
Update:
i have a question the users who are going to join this meeting are not from my organization, they can anyone but they should be someone from my slack workspace.
Unfortunately there is no way you can do it since technically as a default anyone with the Google Meet link can ask to join and the event organizer will either allow or deny. You can only set the permission according to the 3 options in the screenshot above (Meet Safety Settings).
Refer to the link below:
Join a Meeting
If you want to integrate and authenticate Slack with Google Calendar, maybe it can be done with API configuration. Here is the API link:
Integrate the Google Calendar API with the Slack API
We are having a launch party for our new mobile app on February 19th. At the party, we want to display a real time user count on a big tv (similar to the scene in The Social Network movie).
If someone creates an account on our app, we want to immediately see the user count go up by 1.
How do we do this? Flurry Analytics is not real time and that's our analytics platform. I've heard Google Analytics has a real time user count but can we have two analyics platforms at once?
Thanks.
To resolve this issue, I created an account with Countly (www.count.ly) which is an open source analytics platform that tracks real time. We will hook my laptop up to a TV and zoom in on the user count portion of the dashboard.
Yes google analitics have great live report.
You can also take a look at parse.com
Parse Multi platform api make it super easy for you to create a app/web page to show live stats.
:)
I am a web developer, and offer the creation of Google Analytics accounts for clients. To save them messing around with veifying email accounts, I like to create them a gmail account, get it all set up then just send them the password.
However, Google is asking for verification by Mobile and I have now reached the "verification limit".
I kind of understand why Google don't want spam accounts, but is there no way to regsiter as a developer and then create accounts for clients? Something like apps for business, but just for standard Google accounts.
Thanks #CrayonViolent it looks like profiles is the way forward
I would be a mistake to use profiles for multiple clients. For one, each client would be prevented from using more than one profile. And there is a limit of 50 profiles per account.
In my app:
Flurry is showing over 11,000 new users.
I also have google analytics in the app too and that is showing 8,200 unique visitors.
Has anyone got experience of this and could lead me in the direction of a solution to why there is this discrepancy in numbers.
Thanks
There are 2 key differences in the way Flurry and Google Analytics report "New Users".
1) Flurry looks at unique devices, and not user IDs. That means that if a user uses the same user ID to install the app on multiple devices, Google will count it as 1 Sale, whereas Flurry will count it as multiple "New Users".
2) Flurry counts a user only when they have launched the app, not upon install. Which means that if Google Analytics report an "install" today, but the user launches the app tomorrow, Flurry system will count it as a New User tomorrow.
Full disclosure: I work at Flurry
I discovered that whoever setup our Google account set it up as a 'Web ' profile and not an 'App' profile. And in googles best practice guide, it states that if you do this, the results are unpredictable! I might add this as the answer for this particular problem
My scenario is the following: We currently own an online rental marketplace that uses peer to peer bookings just like Airbnb. This means each user has a calendar for their property.We have a Vaway calendar for the bookings on our site however are wanting to integrate google calendar so we can be able to 2 way sync/asynchronous all the Ical calendars to each other from our partner sites who support it.
After much research I have tested my personal google calendar to see how the iCal works and it seems to work perfectly so we decided this architecture would need to be implemented on a much larger scale. This would be used in all new users signups to give our users an all in one calendar that syncs all our Partner sites into one completely synced google calendar for their listing. This basically allows a user who has their listing on 7 different platforms to sync to one calendar showing availability for them to keep track of inside Vaway account.
The google calendar would be completely separate from our Vaway calendar specifically to allow our users to sync all their property bookings from other sites into one integrated calendar.. The problem when reading about google calendar API is it requires OAuth 2.0 which is required user sign in from their existing google account (Calendar, Gmail...etc). Many of our users and new signups will not have google accounts and we do not want them to have to go through a google signup process to log into their calendar. Is there any way around OAuth 2.0? We really just need the functionality of the google calendar and its syncing capabilities inside our dashboard to give read write permission and sync back and forth 2 way with other calendars on other platforms.
With all of the features the google calendar has it seems to be perfect for what we are doing when testing. Each user that signs up with us will have google calendar in their Vaway dashboard provided by vaway however they will manage their own google calendar inside the Vaway platform for their property bookings. All calendars events/bookings would be public to allow the Ical syncing option to push through.
We do not want the users accessing this calendar outside of the platform because the pulls them away from the site. I'm not sure what solution would best suit this business model and am totally at my wits end here after researching. We are trying to keep our overhead low so google apps marketplace is not an option.
You really should reformulate your question, because it's really hard to read and understand right now.
But if I really get your question, you want to enable managing google calendar from a personal application without the end user having to log to any google personal account.
If this is clearly what you want to do, I suggest you to have a look to Service Account with OAuth2.0.
(See here : https://developers.google.com/accounts/docs/OAuth2#serviceaccount)
It will provide a service account for your application, from which you will be able to handle calendars for your app.
And here you will find a sample showing how to do it with Java. (https://code.google.com/p/google-api-java-client/wiki/OAuth2#Service_Accounts)