と非RailsのRESTのAPIを消費...実際にも、「休息」の部分は疑問であるが、彼らは試してみました:は、私は非RailsのRESTのAPIに対してActiveResourceを使用していますActiveResource
Although RESTful applications are ideally stateless, the ALM platform requires sessions to manage locking, client life time, and perform other basic tasks. Session management is performed using a cookie named QCSession.
をとにかく、私は必要1つのGETを「認証ポイント/認証」に発行してユーザーを認証し、クッキーを取り戻すこと。どのようにそれを行うか分からない。ここに私のものがありますが、私は404エラーを受け取ります:
class AlmActiveResource < ActiveResource::Base
attr_accessor :lwsso_cookie, :qcsession_cookie
self.site = "http://alm_url/qcbin/"
self.user = "name"
self.password = "pw"
def self.authentication
@auth_point = "authentication-point/authenticate"
self.prefix(@auth_point)
meow = self.get(:authenticate)
Rails.logger.debug("Meow: #{meow.inspect}")
end
end
Mad props!ありがとうございました。 – ScottJShea