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
If you have used stitches before, the enabled field was added to ApiClients, and you need to add that field to your database. You can do this by running the included generator:
rails g stitches:add_enabled_to_api_clients
And then:
rake db:migrate
Test the install
In your app run:
rake generate_api_key[some_name_you_pick]
Then follow the instructions it outputs.
If you are doing this locally and get an error like the following:
WEBrick::HTTPStatus::LengthRequired
that's because WEBrick doesn't want an empty body. Throw on a -d '' to the end of the command.