11 Matching Annotations
- Apr 2022
-
Tags
Annotators
URL
-
- Dec 2020
-
-
Go is introducing publicly-visible API changes related to these issues in an upcoming major release, which risks making the vulnerabilities public without explicit public disclosure.
Whaaat ?!
-
- Dec 2019
- Oct 2019
-
cloud.google.com cloud.google.com
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
if key has to be rotated, it'd be a real pain to change for native apps
-
-
swagger.io swagger.io
-
This is useful if just a subset of the operations need the API key
can we do wildcard paths at all?
-
PI keys are supposed to be a secret that only the client and server know. Like Basic authentication, API key-based authentication is only considered secure if used together with other security mechanisms such as HTTPS/SSL
-
-
cloud.google.com cloud.google.com
-
API keys are generally not considered secure; they are typically accessible to clients, making it easy for someone to steal an API key. Once the key is stolen, it has no expiration, so it may be used indefinitely, unless the project owner revokes or regenerates the key
hmmm... what about client-API architectures where there are no username/pwd pairs?
-
Cloud Endpoints handles both API keys and authentication schemes, such as Firebase or Auth0
-
-
cloud.google.com cloud.google.com
-
Access control for GCP APIs encompasses authentication, authorization, and auditing. Authentication determines who you are, authorization determines what you can do, and auditing logs record what you did
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
For each call to your API, user should send token with every API request and you should validate the encoded toke and either deny or send back the response.
-