How to resolve OAuth2 request failed: Service responded with error: 'Service has been disabled for this account.'? - api

How can I resolve
OAuth2 request failed: Service responded with error: 'Service has been disabled for this account.'
?
I have a Chrome extension that requires a "See, edit, create, and delete all your Google Sheets spreadsheets" sensitive scope. I think maybe some companies block apps with this and this is what is triggering the error.
Do you know if this is the case and how to resolve / maybe do further authentication to remove this error? I was thinking maybe registering on restricted scope .....but honestly not sure if that'll work
I registered sensitive scope but it still seems to be triggering an error for some folks. I think it is a company issue & wondering if others have had this problem and if there's a way to get around this

Related

Which is a correct HTTP status code for "Error creating resource"?

I'm developing an application with authentication, and i need to provide a appropriate status code if there is any error when registering an user, for example a database-related error.
I've been researching but i haven't found an appropriate status code.
The purpose of all HTTP errors is to communicate the operation failed. To pick the right HTTP error, you need to know why it failed.
"database-related error" sounds like a server-side bug or problem, so this is likely just a 500.

Unable to register .in domain in Godaddy Module

I am using Godaddy Module to Register Domain Name. While Registering .in domain i am getting following error
"Order Accept Encountered Problems
Request body doesn't fulfill schema, see details in fieldsbody.privacy does not exist in the schema"
i did some google and it is related to privacy protection option, but since my client don't want privacy protection how i overcome this error
Please explain me how to solve this error thanks in advance.

401 unauthorized error while creating object in back4app via Temboo

I am creating an object in parse (using back4app parse server for this).
I get the following error when I run the choreo in temboo.
A HTTP Error has occurred: The remote server responded with a status
code of 401. Typically this indicates that an authorization error
occurred while attempting to access the remote resource. The data
returned from the remote server was: {"error":"unauthorized"} . The
error occurred in the HTTPSend (Parse) step.
That 401 error might indicate that the Id or Keys are not correct. Maybe it could be a good idea to double check them.
Also, what is the host and path for the API Request that you're doing with Temboo (I'm not acquainted with it)? If you're not using the correct ones it might cause problems too.
Make sure you're reaching something like this:
https://parseapi.back4app.com/classes/Your_Class_Name

Domino Server Authentication Error - Weird

We are receiving the following error message when people attempt to log in.
nHTTP: TlRMTVNTUAABAAAAB4IIogAAAAAAAAAAAAAAAAAAAAAFASgKAAAADw== [173.164.83.101] authentication failure using internet password
Any ideas why this is happening and why it's preventing appropriate logins ?
Turns out it was a single sign-on setting problem. We fixed the setting and all is working.

What are the 404;1, 404;2 etc HTTP error codes for?

In IIS I can configure my custom error pages.
For each HTTP Error code I can say where to go. Several codes have a number of "sub" codes available. For example 404 has a regular 404, 404;1, 404;2 and so on..
What are they for? When are they returned? Should I make custom pages for these errors? Can I somehow easely configure all code "families" to come to the same page?
401 - Access denied. IIS defines several different 401 errors that indicate a more specific cause of the error. These specific error codes are displayed in the browser but are not displayed in the IIS log:
401.1 - Logon failed.
401.2 - Logon failed due to server configuration.
401.3 - Unauthorized due to ACL on resource.
401.4 - Authorization failed by filter.
401.5 - Authorization failed by ISAPI/CGI application.
401.7 – Access denied by URL authorization policy on the Web server (This error code is specific to IIS 6.0.)
Here is the complete list in the MSDN documentation for IIS 5.0 and 6.0 and for IIS 7.0, 7.5 and 8.0.
If you want to show your visitors or users a nice custom message depending on these subcode, you could do it. But you needn't.
"Substatus" error codes are specific to IIS. They are for "internal" logging purposes - whatever the substatus code, it is the the parent error that gets returned to the client (404.2 gets sent back as 404)
They were implemented specifically to reduce the surface area of attack of IIS whilst still providing sysadmins with a meaningful amount of data. Therefore you actively should not send back specific substatus error messages as you will be opening your IIS installation to possible attack.
Reference
This blog article appears to explain a lot of this. Perhaps it can be of help? At the very least, it explains the meaning of the 'sub-codes'.