0

VUE フロントエンドで動作することを意図した Rails API に取り組んでいます。Rails を API としてのみ使用するのはこれが初めてです。

私は、他の Rails アプリでのユーザー認証に devise を使用することに慣れています。

サインインは、ログアウトと同じように機能します。ただし、ユーザーを編集および削除する方法がわかりません。

私のレーキルートはこれを示しています:

        new_api_user_session GET      /api/v1/auth/sign_in(.:format)                            devise_token_auth/sessions#new
            api_user_session POST     /api/v1/auth/sign_in(.:format)                            devise_token_auth/sessions#create
    destroy_api_user_session DELETE   /api/v1/auth/sign_out(.:format)                           devise_token_auth/sessions#destroy
       new_api_user_password GET      /api/v1/auth/password/new(.:format)                       devise_token_auth/passwords#new
      edit_api_user_password GET      /api/v1/auth/password/edit(.:format)                      devise_token_auth/passwords#edit
           api_user_password PATCH    /api/v1/auth/password(.:format)                           devise_token_auth/passwords#update
cancel_api_user_registration GET      /api/v1/auth/cancel(.:format)                             devise_token_auth/registrations#cancel
   new_api_user_registration GET      /api/v1/auth/sign_up(.:format)                            devise_token_auth/registrations#new
  edit_api_user_registration GET      /api/v1/auth/edit(.:format)                               devise_token_auth/registrations#edit
       api_user_registration PATCH    /api/v1/auth(.:format)                                    devise_token_auth/registrations#update

私のroutes.rbは次のようになります:

Rails.application.routes.draw do

  root 'home#index'

  namespace :api do
    scope :v1 do
      resource :profile, only: [:show]
      mount_devise_token_auth_for "User", at: 'auth'

     ## other code
    end
  end

end

CURL を使用して API をテストしています。次のコマンドで正常にログインできます。

curl -X POST -v -H 'Content-Type: application/json' http://localhost:3000/api/v1/auth/sign_in -d '{"email": "test@example.com", "password": "password"}'

それはうまくいきます。

ユーザーを更新するためのルートは、http://localhost:3000/api/v1/auth/である必要があります。

サインインすると、クライアントとアクセス トークンの値が表示されます。それらを次のcurlコマンドにポップすると、ユーザーが更新することが期待されます。更新しようとしている属性は「sortOrder」です。

curl -X PATCH -v -H 'Content-Type: application/json' -H 'access-token: XUbhcAgWlVnARf9Ps4rjR' -H 'client: Lxg5us7MpUyAuM5xQGNuqg'  -H 'uid: test@example.com' http://localhost:3000/api/v1/auth/ -d '{"sortOrder": "DESC"}'

そのコマンドから、私のレールログは次のように表示されます:

Started PATCH "/api/v1/auth/" for 127.0.0.1 at 2018-12-26 12:10:53 -0800
Processing by DeviseTokenAuth::RegistrationsController#update as */*
  Parameters: {"sortOrder"=>"DESC", "registration"=>{"sortOrder"=>"DESC"}}
  User Load (0.6ms)  SELECT  `users`.* FROM `users` WHERE `users`.`uid` = 'test@example.com' LIMIT 1
Unpermitted parameter: registration
Completed 404 Not Found in 101ms (Views: 0.3ms | ActiveRecord: 0.6ms)

curl コマンドの出力は次のとおりです。

*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 3000 (#0)
> PATCH /api/v1/auth/ HTTP/1.1
> Host: localhost:3000
> User-Agent: curl/7.47.0
> Accept: */*
> Content-Type: application/json
> access-token: XUbhcAgWlVnARf9Ps4rjR
> client: Lxg5us7MpUyAuM5xQGNuqg
> uid: test@example.com
> Content-Length: 50
> 
* upload completely sent off: 50 out of 50 bytes
< HTTP/1.1 404 Not Found
< X-Frame-Options: SAMEORIGIN
< X-XSS-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
< Content-Type: application/json; charset=utf-8
< Cache-Control: no-cache
< X-Request-Id: 1e5e61f6-1226-43dc-b8b3-30a576b0c03a
< X-Runtime: 0.104965
< Vary: Origin
< Transfer-Encoding: chunked
< 
* Connection #0 to host localhost left intact
{"success":false,"errors":["User not found."],"status":"error"}

ここで何が欠けているのかわかりません。このデバイスのセットアップでは、デバイス/登録コントローラーにアクセスできません。おそらく独自のものを作成できますが、これでうまくいくはずです。ユーザーの更新と削除に対処する devise_token_auth gem のドキュメントを見つけることができませんでした。

私が得ている結果は、「ユーザーが見つかりません」のようです。リクエストでユーザー UID、電子メール、および ID を取得する方法をいくつか試しましたが、うまくいかないようです。誰もこれを経験したことがありますか?

4

1 に答える 1