タグ付けされた質問 「httparty」

2
RailsとHTTPartyを使用してJSONをAPIにPOSTする
Ruby on Railsアプリ内のユーザーが外部のチケット管理システムsquishlist.comにチケットを送信できるようにしたいと考えています。彼らは次のようにAPIと指示を持っています。認証してトークンを取得し、トークンを使用してチケットを送信する必要があります。スキッシュリストから。 # 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 token https://api.squishlist.com/rest/?cfg=testcorp&token=authtoken&method=squish.issue.submit&prj=demo POST data: {'issue_type': 1, 'subject': 'Hello, world.', 4: 'Open', 5: 10} テストの目的で、コントローラー、ルート、およびビュー(ページ)をテスト用に作成しました。私のコントローラーには次のものがあります require 'httparty' require 'json' class SubmitticketController < ApplicationController def submit_a_ticket @cfg = 'xxxsupport' @user_key = …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.