Questions tagged [oauth]

84 questions
0
votes
3 answers

Install PHP OAuth Extension In Snow Leopard

I am trying to install the PHP OAuth extension in Snow Leopard, I'm using the bundled Apache Web server and PHP 5.3.2 by Apple, which is working just fine. When I type in Terminal: sudo pecl install oauth oauth-1.0.0.tgz downloads fine, but then I…
0
votes
0 answers

How to get invitee´s information who schedules event at Calendly in GTM data layer

I´ve created a html site with a Calendly widget embedded to allow clients to scheduled meetings with me. Webpage is being tracked by Google Tag Manager, which is set up to listen events each time a meeting is scheduled (viewed event, date and time…
0
votes
0 answers

Multiple domains for login with google

We are adding login in with google to an ecom website which powers multiple domains/locales where we have a different domain for each store. The problem is we have different privacy policies for each country. How do we manage this in a single app-…
Chris Mccabe
  • 113
  • 4
0
votes
0 answers

How to scrape Prometheus secured with OAuth2-proxy and Keycloak

I have 2 prometheuses, both are with forward-auth via the oauth2-proxy, which have the same client credentials in a single keycloak. I would like one prometheus to federate the other one. This is my config snippet for authentication in…
simonszu
  • 373
  • 7
  • 14
0
votes
0 answers

Difference between OAuth 2 and 3 legged

Our business uses an application with our EMR system in which they upload PDF documents into a third party EMR. We basically are outsourced healthcare and then upload documents from our EMR to another EMR being used at the facility. Recently, we…
0
votes
0 answers

How to modify a Kubernetes Ingress to work with oath2-proxy

I'm following this tutorial to expose my Kubernetes dashboard via an Ingress and secure the ingress with basic authentication using oauth2 proxy with GitHub as the identity provider. Basically, any requests to access my Kubernetes dashboard (at host…
0
votes
0 answers

How do I can make mTLS using HttpClient to check the certificate on the server

I want to check the SSL/TLS certificate on the server side, so, on the client, when I do var webHandler = new WebRequestHandler(); var cert = new X509Certificate2(Path, Pass); webHandler.ClientCertificates.Add(cert); webHandler.AuthenticationLevel…
0
votes
0 answers

Ouath2 Consent screen fails in gcloud without providing verification option at the command prompt

I am a newbe & trying to run the Python quickstart sample script from gcloud CLI. The script is here https://developers.google.com/classroom/quickstart/python. I have the scope set and Oauth2 creds are also set to include the scope. I am unable to…
0
votes
0 answers

Login to google chrome profile in a docker container

I am using selenium standalone chrome image to run selenium automation scripts on a docker container. All the websites I am trying to automate have the option to sign in using google. But in order to do that I will need to be logged in to chrome…
0
votes
0 answers

kuberntes oauth2-proxy with github provider return 500 Internal Server Error

I'am trying to add an authentication from Kubernetes ingerss with oauth2-proxy github provider i have set everything according to the official documentaion the url works and it redirects me to use my github account but after login in it redircts me…
0
votes
0 answers

reverse proxy with host machine authentication

I have the following situation: In my company we can access O365 via authenticated devices only using Oauth, but I need to access web email at least from an old industrial PC device that cannot be joined to network because it doesn't meet the…
0
votes
0 answers

oauth2 on office365 smtp with curl error 530 5.7.57 Client not authenticated to send mail

I am using this curl: curl -vvv --url 'smtp://smtp.office365.com:587' \ --ssl-reqd \ --mail-from "$user" \ --mail-rcpt "$destuser" \ --upload-file ./mail.txt \ --oauth2-bearer $accesstoken to try to send an email from an account where I registered…
golemwashere
  • 734
  • 1
  • 10
  • 22
0
votes
1 answer

What role does session on the Authorization server play?

I was reading about Sessions in this article https://auth0.com/docs/users/sessions It says when a user logs in, two types of sessions are create Two sessions are created: The local session (storezero.io): Allows the application to know if a user is…
MrRobot9
  • 123
  • 4
0
votes
1 answer

Redirect URI mismatch error from Google OAuth for flask app

I have a Flask web application which is hosting in Google Cloud Run which is hosted with https://mydomain.run.app. Now I am trying to add google authentication to it. I have created the API under credentials in GCP. I have given…
0
votes
1 answer

How do I change my redirect_uri for Google OAuth 2.0 authentication?

I have been using Google's OAuth 2.0 authentication on my site for years. Recently it stopped working because the redirect_uri I had used http:// and Google now apparently requires https. My site supports https so I changed my local…
Graeme Perrow
  • 555
  • 1
  • 4
  • 16