我有一个Spring MVC WebApp和一个带有wp api的wordpress网站,以及oauth 1.0a身份验证。
我有以下值进行身份验证: oauth_consumer_key oauth_consumer_secret 组oauth_token oauth_token_secret
我使用POSTMAN应用程序在Chrome的“Authoriaztion”标签上传递这些值,我可以成功使用。
我试着用弹簧消耗但是,用Spring我找不到放置上述参数的位置。
我试过这个并且它有效: https://code.tutsplus.com/tutorials/wp-rest-api-setting-up-and-using-oauth-10a-authentication--cms-24797
我发现了这个: Make a java based Rest call with Oauth Consumer key,secret, access token and token secret
但似乎无法理解如何使用oauth_consumer_key执行oauth 1.0a oauth_consumer_secret oauth_token oauth_token_secret。
任何可能有用的链接?