I am trying to use RestClient to access a webservice using post method. I am sending the authorization token as specified but I am still getting a 403 status error which means I
If you craft a request manually, you can use inspect to show the full url
req = RestClient::Request.new( :method => :post, :url => "https://api-dev.xxx.com/software/services/search/ABC", headers: {params:{:authorization => "Bearer #{token}"}}) puts req.inspect