Is there an API to fetch Apps status for Google workspace subscription? - google-admin-sdk

I'm in need of an API to
Fetch available apps and their status for Org's workspace subscription
Fetch user based usage stats for each apps associated to that particular subscription

Related

AWS Pinpoint usage analytics, with Cognito hosted UI

I want to connect Pinpoint to my Cognito User Pool. My only requirement as of now is to see usage analytics, like new users, daily active users, etc. I created a Pinpoint project, then inside the user pool, went to General settings > Analytics > Add Analytics, selected the Cognito app client, selected the Pinpoint project in to corresponding region, checked the 'Share user profile data' checkbox. I have added Hosted UI for my cognito user pool, and signing up new users from there. However I don't get any analytics data at all in my pinpont usage dashboard. Am I missing something, is it not possible to do it via hosted UI?

Is there a way to Connect your Google Reviews into a Django Website?

been looking for a tutorial whereby one can connect automatically the reviews they receive from Google My Business and add them as testimonials to a Django Website.
Via the Google Business Profile APIs, it is possible to receive Pub/Sub notifications for new or updated reviews. You would have to set up a Pub/Sub topic to which Google will send these notifications. A Pub/Sub subscription would then need to process these notifications and save the fetched review data to a database of choice.
The prerequisites for this are that you were granted access to the Google Business Profile APIs in the first place and that you have acess to those GBP locations.

WSO2, not allowed subscribers to create application

I'm a newer in wso2 and having some confusions regarding subscribers who log into the developer portal for subscribe to APIs. In fact,i created a user with the role internal\subscriber and internal\selfsignup and after logging in with this user, I expected that he could only see the APIs created and subscribed to them with the applications created in the /publisher page, but it seems that this user has the possibility to create these own applications and I do not see how to withdraw these privileges. I want it to use also the apps created in /publisher.
Best regards
The question is a little confusing. Please find the basic ideas of API visibility and API subscription availability below.
You can create applications in the devportal or store portal
You can create APIs in the publisher portal
In general, when you create an API in the publisher portal and publish it without any role visibility restrictions, anyone can view those APIs. To view these publicly available APIs in devportal, you don't even have to log in to the devportal. This is can be viewed in anonymous mode.
In case if you have restricted the API visibility in devportal based on roles, then only the users with the allowed roles can view those APIs.
Similar to API visibility, you also can control the API subscription in the devportal. The subscription availability option will only be displayed if there are tenants in your environment.
Please refer to the official document for more details on this topic.

How to fetch revenue reports from Amazon Publisher Services using API?

I have access to my client's Amazon Publisher Services account. Now my client wants a tool that can fetch revenue reports from APS and store it into the database. But the problem is that I couldn't find any official doc regarding APS reporting API.
I have already tried https://ams.amazon.com/webpublisher/uam/docs/s3-reports.html but there are no request parameters it's just like an essay.

Google Cloud Api Authorization

I want to use google cloud pub sub to implement Facebook kind of notifications in blog application which has following architecture
I have a both web and android device as a client for rest services exposed.
Those rest services has been secured using OAuth2 (spring security).
When user create a blog then if someone comment on that post, the concern owner can get the notifications. Only authorized user can create a post or comment and the concern person can see the notifications
I don't want user to authorize again with Google so how I can incorporate the api's in my architecture using pull notification
You typically wouldn't use Google Cloud Pub/Sub in the client in the type of setup you describe. Cloud Pub/Sub isn't designed to scale to a number of subscriptions that are on the order of number of phones. Instead, you'd want to use Firebase Cloud Messaging. Firebase has a model that handles registration of devices to receive messages that is more in line with what you are thinking of, e.g., Set Up a Firebase Cloud Messaging Client App on Android and
Implementing a Firebase Cloud Messaging Client on Chrome
What you may use Cloud Pub/Sub for is communication between different services. For example, perhaps the service that handles blog posts publishes messages on a Cloud Pub/Sub topic that your notification service subscribes to. The notification service would process the message and send out Firebase Cloud Messaging messages to end users as appropriate.