r-lib / httr

httr: a friendly http package for R
https://httr.r-lib.org
Other
986 stars 1.99k forks source link

OAuth - AuthCode with PKCE (without secret) #705

Closed m-mohr closed 2 years ago

m-mohr commented 2 years ago

We are using the OAuth 2.0 functionality. It seems that httr is only supporting the AuthCode flow without PKCE (i.e. you need to provide a client secret). Is there a way to use AuthCode (or Device Code) with PKCE and thus without a client secret? If not, are there any plans to implement this?

jennybc commented 2 years ago

I think you should look at httr2:

https://httr2.r-lib.org

m-mohr commented 2 years ago

Thanks, that will probably work!