Error: Error getting tokens for google assistant on desktop - google-assistant-sdk

Failed to get Tokens
Assistant failed to fetch the tokens from server. Either the auth code is invalid or the rate limit might have exceeded.
Try selecting a different Google Account.

Related

Google AdWords Issue: DEVELOPER_TOKEN_NOT_APPROVED

I have created an AdWords Account having a campaign running. I have created a production MCC account. But I have not applied for Basic Level token. It is the Test Account Access token.
When execute the GetCampaign program, I get the following error:
Request failed due to ApiException. Underlying ApiErrors:
Error 0: QuotaCheckError{apiErrorType=QuotaCheckError,
errorString=QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED, fieldPath=,
reason=DEVELOPER_TOKEN_NOT_APPROVED, trigger=<null>}
DO we need to have the Basic Access level token for accessing the API data.
Won't the test token suffice?
I solved the issue by using the Dev token of Production and OAuth2 credentials of test account

How to get Twitter data into KNIME for sentiment analysis

Here is what I tried, with the following result:
ERROR Twitter Search 0:2
Execute failed: 401:Authentication credentials (https://dev.twitter.com/pages/auth) were
missing or incorrect. Ensure that you have set valid consumer key/secret, access
token/secret, and the system clock is in sync.
message - Invalid or expired token.
code - 89
Try regenerating the API keys and secrets. The Twitter API Connector node will "run" and show green lights even if the connection is not established. I have had this issue a number of times, going on the Twitter developer site and generating new tokens, entering them in KNIME and running your flow again will fix the issue (hopefully).
enter image description here

Youtube quota limit exceeded on a new Google Console Project

I am writing a PHP CLI script that will upload videos to my Youtube channel. I created a project in Google Console, enabled Youtube API, enabled OAuth and received my client ID and secret. Then I generated a refresh token using https://developers.google.com/oauthplayground .
The authentication seems to work as I don't get any errors regarding that, but I get the following error:
"code": 403,
"message": "The request cannot be completed because you have exceeded your \u003ca href=\"/youtube/v3/getting-started#quota\"\u003equota\u003c/a\u003e."
The credentials are for a new project where I didn't use anything from the quota.
Why do I get this error and how could I fix it?
I think you're right #GeorgeOlah. I didn't want to waste time setting up OAuth2 stuff, so I generated a key with the playground and then tried to use it with https://github.com/h2non/youtube-video-api.
I immediately got quota errors using the access token from the playground.
So I setup a token using https://github.com/google/google-api-nodejs-client/blob/1bcb74430143e498b9fd58cf2ca2b97da2ed3b07/samples/oauth2.js.
So far, I've had no quota errors with that token.

without subscription in microsoft azure is it possible to get access token for office 365?-swift

I am making an ios app which integrate onedrive api and its giving me this error while signing in to office 365 and (i didn't subscribe in microsoft azure is it the problem?)
systemgroup.com.apple.configurationprofiles path is
/Users/OdysseyApps/Library/Developer/CoreSimulator/Devices/19CE4531-2058-46DD-8F7C-DB3B6ACC06DC/data/Containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2017-03-14 17:23:46.379838 onedrive[861:28260] [MC] Reading from
private effective user settings. 2017-03-14 17:24:06.853
onedrive[861:28260] -[ADAuthenticationBroker
webAuthenticationDidCancel][353][main] 2017-03-14 17:24:06.872
onedrive[861:28260] ADALiOS [2017-03-14 11:24:06 -
C0176528-6FB0-4085-BD79-F59FB164A673] ERROR: Error raised: 1.
Additional Information: Domain: ADAuthenticationErrorDomain
ProtocolCode:(null) Details:The user has cancelled the authorization..
ErrorCode: 1. 2017-03-14 17:24:07.398 onedrive[861:28260] ADALiOS
[2017-03-14 11:24:07 - C0176528-6FB0-4085-BD79-F59FB164A673] ERROR:
Error raised: 1. Additional Information: Domain:
ADAuthenticationErrorDomain ProtocolCode:(null) Details:The user has
cancelled the authorization.. ErrorCode: 1.
Is it possible to get access token of office 365 without subscribe in microsoft azure. or without access token is it possible to access one drive using one drive api
Yes. It is possible. At last I uploaded a file in one drive without Subscribe in mIcrosoft Azure. Here is the link https://github.com/microsoftgraph/ios-swift-snippets-sample

Youtube API NoLinkedYouTubeAccount Error

using of youube api getting this error
Error Domain=com.google.GDataServiceDomain Code=403 "The operation
couldn’t be completed. (com.google.GDataServiceDomain error 403.)"
UserInfo=0x7676020 {Error=NoLinkedYouTubeAccount,
error=NoLinkedYouTubeAccount}
You recieve this error since you are using Service account authentication.
The service account flow supports server-to-server interactions that do not access user information. However, the YouTube Data API does not support this flow. Since there is no way to link a Service Account to a YouTube account, attempts to authorize requests with this flow will generate a NoLinkedYouTubeAccount error.
https://developers.google.com/youtube/v3/guides/authentication
You may try to use another type of authentication, such as server-side or installed application, however user should allow to use his account.
If you want to create an app which will allow different users to add videos to your own channel, than you can try ClientLogin authentication protocol.
Look here for more info https://developers.google.com/youtube/2.0/developers_guide_protocol_clientlogin#ClientLogin_Authentication
This protocol is deprecated but I have not found any way to resolve problem.

Resources