We are working on integrating Google Status dashboard into cachetHQ for our project, is there any way to get the status published in the link below via API?
https://www.google.com/appsstatus
There is no api for app status but there is an RSS feed RSS
You could use that. its what i have done in the past
Related
I am trying to use the experimental skills provided by the bot framework. I downloaded the code for the news skill and created all azure resources. I got the bing key from here and placed it in my appsettings.json I also updated all my config values to my Luis app.
I am testing through emulator. When I run the code I go through the dialog successfully, it asks me for the topic I want to get news about and my country and then at the point where it has to get the news articles I get the following error.
Does anyone have any idea what am I missing? I tried the bing API through postman using the same key I have in my appsettings and it is working fine.
Should I do an additional step other than just download the code and update all the config values?
I don't know what is causing this error.
If you have created bing using new marketing portal.
Here are endpoints for Bing news using REST API.
Doc Location: https://learn.microsoft.com/en-us/bing/search-apis/
I am trying to download content owner reports via the Youtube Reporting API. When I try to list reports by content owner (onBehalfOfContentOwner) I get a 403 "The caller does not have permission". When I leave out the content owner parameter I only get channel reports back.
I have tried using OAuth2 tokens generated for both a manager of the channel and the channel user itself (generated using the server-side flow:). This happens from both the client library and the API explorer.
What could be going wrong here? Perhaps the issue has to do with the way the accounts are set up in Google Cloud - the channel manager has been added to the Google Cloud project, and the Youtube Reporting and Youtube Analytics have been enabled for that project.
I try to fetch photos based on hashtags using Instagram API(Sandbox mode). Using below API
https://api.instagram.com/v1/tags/awesome/media/recent?access_token=<My Access token>
I am getting the error
> {"meta": {"code": 400, "error_type": "OAuthPermissionsException",
> "error_message": "This client has not been approved to access this
> resource."}}
But if I use https://api.instagram.com/v1/users/self/media/recent/?access_token=<My Access Token>
then its returning recent 20 media items.
In my sandbox I have authenticated 1 more user but I am not getting any media items other than mine.
I am following the official documentation of Instagram API.
Please provide your inputs for this behavior.
/tags endpoints requires public_content scope enabled for your app. Without it you will not be able to use this endpoint. To be honest right now it is not possible to submit your app for review if you want to have public_content permission. Old Instagram API accepts apps for review only for basic scope. You should try to switch to Facebook Graph API, but please keep in mind that right now it supports only Instagram Business Accounts.
You can try to filter out media that does not contain the tag you wish in response from /self/media/recent endpoint. I know, not the best solution:/
I'm using the API Explorer tool to create some request urls for google adsense here. Here is the request url that they gave me that gives a response of today's earnings:
https://www.googleapis.com/adsense/v1.4/reports?startDate=today&endDate=today&accountId=MY_ACCOUNT_ID&metric=EARNINGS&key={YOUR_API_KEY}
However, I don't know how to get my API key for google developer to be able to recreate this url in my code.
The API key is created on the Cloud Platform Console. Please refer to this document and you will be able to do it. Hope this helps!
In the laravel project I'm using google api that fetches google analytics report when user logins with his google analytics a/c. But when I try to give embed functionality where user can use it in his websites to show fragments like current online users, country-specific users,etc. It isn't working due to some issues.
simple embed code that user is supposed to fetch data anywhere outside my website:
<embed src="http://www.example.com/shareEmbed/id">
while I'm testing and pasting the above code in different page, it shows login error as in below image
please help me!