You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mib32 I've kinda tripped on this page while looking for something else, you can use my gem to use http party with cookie support:
class My_awesome_cookie_using_api
include HTTParty_with_cookies
end
api = My_awesome_cookie_using_api.new
api.get 'http://someurl.com/endpoint'
api.cookies['darkside'] #=> 'We have cookies!'```
https://github.com/awls99/httparty-with-cookies
@mib32 I've kinda tripped on this page while looking for something else, you can use my gem to use http party with cookie support: