OAuth::Problem (parameter_absent)

青春壹個敷衍的年華 提交于 2019-11-30 23:42:36

The parameter_absent error means that you are not sending all of the required OAuth parameters to the endpoint. For the request token endpoint you need to insure that all of these parameters are present:

  • oauth_consumer_key
  • oauth_signature_method
  • oauth_signature
  • oauth_timestamp
  • oauth_nonce

For the accessToken endpoint the following parameters are required:

  • oauth_consumer_key
  • oauth_signature
  • oauth_signature_method
  • oauth_token
  • oauth_timestamp
  • oauth_verifier

I has similar problem and was wondering what is wrong. Finally got to know that I forgot to set the Environment variable on the production server that was serving the keys/secrets.

Not sure that this is the same case with you, I would recommend you to check the env vars if you are using them.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!