2
Rails 및 HTTParty를 사용하여 API에 JSON 게시
내 Ruby on Rails 앱의 사용자가 내 외부 티켓 관리 시스템 인 squishlist.com에 티켓을 제출할 수 있기를 바랍니다. 다음과 같은 API와 지침이 있습니다. 인증하고 토큰을 얻은 다음 토큰과 함께 티켓을 제출해야합니다. squishlist에서. # get the token https://api.squishlist.com/auth/?cfg=testcorp&user_key=privatekey&api_key=TEST-KEY-12345 => {"token": "authtoken", "expires": "2010-06-16 13:31:56"} # and then the ticket with the …
106
ruby-on-rails
json
api
httparty