Hey, I'm working through the ruby sso example app and could use some help. I set up Google OAuth credentials, configured my WorkOS dashboard, and got the app running. The login button sends me to Google, which sends me back to localhost, which explodes with:
Parameter 'organization_id': Can't set WorkOS::Types::ProfileStruct.organization_id to nil
this is in the /auth handler: https://github.com/workos/ruby-example-applications/blob/main/ruby-sso-example/app.rb#L50
further down the stack:
response = client.request(post_request(path: '/sso/token', body: body)) (code) returns 422 Unprocessable Entity when I ran it in a debugger
The app does work with your Okta dummy org, which suggests I've got the fundamentals in place. Any ideas on how to get Google OAuth working?

Hey, I'm working through the ruby sso example app and could use some help. I set up Google OAuth credentials, configured my WorkOS dashboard, and got the app running. The login button sends me to Google, which sends me back to localhost, which explodes with:
Parameter 'organization_id': Can't set WorkOS::Types::ProfileStruct.organization_id to nilthis is in the
/authhandler: https://github.com/workos/ruby-example-applications/blob/main/ruby-sso-example/app.rb#L50further down the stack:
response = client.request(post_request(path: '/sso/token', body: body))(code) returns422 Unprocessable Entitywhen I ran it in a debuggerThe app does work with your Okta dummy org, which suggests I've got the fundamentals in place. Any ideas on how to get Google OAuth working?