morsetree

Results 2 comments of morsetree

passport-twitter (http://www.passportjs.org/packages/passport-twitter/) uses OAuth 1.0a, attaching query params in the callbackURL solved the problem for me, ``` app.get('/auth/twitter', passport.authenticate('twitter', {callbackURL: '/twitter/callback?state=hello'})); ```

same issue with chrome 112 and webrtc example. After replacing video encoding H264 with VP8 (changing ```x264.NewParams()``` to ```vpx.NewVP8Params()```), video is showing in Chrome 112. ps: My go build was...