OAuth2 authentication (azure, microsoft, ...)

Hi All,

I would like ask if this is relevant Oauth2 authentication or only google auth is supported ?

Or is possible to authenticate with Microsoft (OAuth2), like
https://docs.rstudio.com/connect/1.8.4/admin/authentication/oauth2/

If yes:
How to map

YAML:

openid:
    client-id:  OK
    client-secret: OK
    auth-url    ???
    token-url  ??? 
    jwks-url   ???

Into

[Authentication]
Provider = oauth2
Lifetime = 24h

[OAuth2]
ClientId = XXXXXXX
ClientSecret = XXXXXXXX
Logging = true
RequireUsernameClaim = https://login.microsoftonline.com/XXXXXXXX/oauth2/authorize

Thanks

The AzureAuth package provides OAuth2 authentication to AAD. If you run into problems, you can ask here or open an issue at the Github repo.

Hi @Hong. Thank you for your answer. But this package is possible to run inside of running application on RStudio Connect, but I would like to login into RStudio Connect using this Azure OAuth2 if is possible.

I am not sure where the YAML code comes from. The necessary ClientId is generated when you register the application. It is called "Application (client) ID" in the overview page. You can create a new ClientSecret in the "Certificates & secrets" page.

Hi @rstub. The YAML is from shinyproxy application, which was used as template. Because clientId and secretId are there also. But I did not found any URL specification, so rstudio-connect always try to use google auth, but I would like to change it to microsoft.

In the Azure portal on the overview page of your app you can click on "Endpoints". This will give you a list of relevant URLs including the "OpenID Connect metadata document" of the form https://login.microsoftonline.com/<your Directory (tenant) ID>/v2.0/.well-known/openid-configuration. From the docs we have

To use a provider other than Google, an OpenID Connect issuer must be defined on OAuth2.OpenIDConnectIssuer . The issuer must be an HTTPS URL and the location of the /.well-known/openid-configuration discovery metadata for OpenID Connect.

So OpenIDConnectIssuer should be set to https://login.microsoftonline.com/<your Directory (tenant) ID>/v2.0/.

1 Like

Thanks @rstub. In the meantime we switch to SAML and that works fine. I think your answer is fine, but I will try it another time.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.