regextokens icon indicating copy to clipboard operation
regextokens copied to clipboard

list of regex patterns for oauth / api tokens with provided source

Results 7 regextokens issues
Sort by recently updated
recently updated
newest added

LinkedIn's API is available in a 2-legged and 3-legged OAuth flow. Microsoft documentation for LinkedIn: [Authenticating with OAuth 2.0 Overview](https://docs.microsoft.com/en-us/linkedin/shared/authentication/authentication?context=linkedin/context) Implementing this addition would require including information on single-factor authentication...

Preliminary overview of Google Services indicate OAuth Flow and API Key are symmetrical across various services such as Gmail, Drive, YouTube, Android, etc. Redundant entries would be tedious to enumerate...

I had some trouble converting to csv as I used "," (comma) in the regex I wrote. So I didn't want to spoil the work by sending it. I am...

See recent pull request: https://github.com/odomojuli/RegExAPI/pull/12 As of April 5th, 2021: https://github.blog/2021-04-05-behind-githubs-new-authentication-token-formats/ GitHub has introduced new formats for their personal access tokens (beta). There should be several additional entries to cover...

Added this source for Square Developer: https://developer.squareup.com/reference/square/oauth-api/obtaintoken Currently the documentation lists the keys being different character limits than what is currently reflected in the repository. Regular expression needs to be...

Came across some regular expression variants in this twitter thread from 2020: https://twitter.com/avicoder/status/1267857981925765120 Regular expressions may vary in usage but I would like to verify some samples against grep. Not...

This is the current expression for `service-id`: ``` ^[A-Za-z0-9]+(-*[A-Za-z0-9]+)*$ ``` I want to plug in the above expression into the below expression. This is the current expression for `service-key`: ```...