do you know any good documentation of Android contact tracing API that Google and iOS jointly worked on? I found one
https://blog.google/documents/55/Android_Contact_Tracing_API.pdf
But the documentation does not make any sense to me.
Do you guys know link of any good doc?
You might want to try out this reference application Google released. You can run it, but you won't be able to enable exposure notifications or call the other APIs unless your account has been authorized by Google as associated with a public health authority.
If you are not working for an authorized public health authority, you can still write code to use Exposure Notification transmissions, but not using the custom APIs. Read here for how you can do that
Related
I am trying to develop an app which needs to access google developer API by using developer email.I have gone through official documentation.I don't understand much.I created client id by following this instructions.https://developers.google.com/android-publisher/authorization
But for generating token they mentioned to call this API "https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri=...&client_id=...".I have client id but I don't know the value for redirect URI in case of android application.objective is I need to get all reviews of the app from developer credentials.Pls anyone help.Thanks in advance
If you don't know what you are doing, you might find it useful to look at the code samples
I'm trying to implement an MDM client app for Android, known in the Android For Work world as a Device Policy Controller or DPC. Google's documentation for building a DPC is here.
The documented process begins with downloading the DPC Support Library. Unfortunately, the download link they provide (to the "EMM Community's Technical Integration" section) doesn't work: you're prompted to log in with a Google account, but after doing so I see this:
We’re sorry...
...but it looks like you don’t have access to this place or content. If you think you should have access to this space, try logging out and back in again using your account menu accessible by clicking your avatar in the top right corner of this page. If this issue persists, please notify your Support Representative and we will troubleshoot further.
Others have had the same problem: there's an issue ticket raised here which is only 2 months old, has no answer but for some reason has been marked Assumed Answered and then ignored.
The steps documented here make it very clear that the DPC Support Library is a required part of the process, and don't describe any alternatives to using it.
So, how do I get hold of the DPC Support Library? Can it be obtained anywhere else? Or failing that, how do I find out what it does so I can reproduce those steps manually in my own code?
Some steps I've already tried:
I have successfully registered for the EMM Community and have access to the EMM API. (i.e. I get a valid response now from Enterprises.generateSignupUrl, and no longer the dreaded "The caller is not registered as an MDM".) That in itself was a long and frustratingly opaque process.
I have built and run the googlesamples/android-testdpc app and looked through the source code. Unfortunately this is a client-only demo: it doesn't communicate with an EMM server and doesn't use the DPC Support Library. Specifically, it doesn't obtain an authorisation token in order to provision a work profile on the device, as documented here.
I have played with the public EMM demo system and its DPC app. That seems to be doing things properly, but as it's closed-source I can't look at the code for either client or server.
Well I now have access, so in that sense I have an answer, but I don't know how useful it'll be to others.
A Google representative replied to my forum post here and granted my organisation access to the EMM Community. Once that was enabled, the steps were as follows:
Create a new Google account using my work e-mail address
Sign into the Cloud Connect portal with that account
Click on EMM Community
Scroll down to the Featured Technical Guidance section and look for the DPC Support Library download link
An alternative to build your own Device Policy Controller app is to use the Android Management API and therefore not have to use the DPC Support Library. This API doesn't have all the features you can get by building your own Device Policy Controller app, but is significantly simpler to implement.
Developing an android app that needs tasks from outlook.office365.com, where the client's work account is connected with AD, I used ADAL library for authentication and don't find API to access the Tasks. Is there any way to get this done?.Kindly update me.
Finally, I have found out a way to access the "Tasks" from outlook.office365.com, Please make sure you read the guide here:
https://docs.google.com/document/d/1iqY_tdyJFbVZ2UR0_rGznSvbamDTdm6gNoltfQZghrQ/edit?usp=sharing
It is working, but I had to get the trial license from the developers, still I'm working on the same by using ews-java-api, once if I find it working, I'll update my answer
Sorry, the API doesn't support interacting with Outlook tasks. You can find all of the Office 365 API documentation on MSDN.
I'm building an app on android that has the features of Log-in with facebook and Log-in with Google. Assuming the user chooses to login with google, I would like to ask for permission and collect basic information such as name,age,sex,location,email from his profile and save it on my server's database.
Here is the problem: Which api should I actually use to grab these info? I don't think google+ api would be a proper choice since not every google user has one. After checking Google-api-java-client documentation, I still cant find anything useful.
There seem to be no library for this basic operation.
The only thing that seems relevant is Google Apps Profile API but
1. it's outdated.
2. Its not free.
I'm too confused and I hope someone can guide me through this nightmare.
Edit: found some new relevant info but I'm still hoping to find an official java library for this:
https://oauthssodemo.appspot.com/step/1
Found what I was looking for: http://javadoc.google-api-java-client.googlecode.com/hg-history/c35433d3077dc4eb89dccb25618dc70dbd375d65/apis/oauth2/v2/com/google/api/services/oauth2/model/Userinfo.html
Is there any way to start developing and working with the framework without getting access from Google ?
now also they didnt give me access to
CtDM
C2DM is in a slow rolling beta. I imagine they got thousands of applicants, and they are only going to take on people at a pace that they can support.
is there any way to start developing
and working with the framework without
getting access from Google?
No. You are welcome to write your own push framework, but C2DM requires Google servers, and for the beta, your C2DM-enabled Google account needs to be on a whitelist.
check this:
https://stackoverflow.com/a/7888059/371749
devices need a google account to use this service! :=)
good luck!