API Key
一番簡単な方法だと 以下のように apiKeyIdとapiKeySecretをbase64 encodingした物
var encodedData = new Buffer('apiKeyId:apiKeySecret').toString('base64');
var authorizationHeader = 'Basic: ' + encodedData;
References
- The Problem with API Authentication in Express
- Securing an API in Rails 5 using Token Based Authentication
- Rail5で authenticate_with_http_tokenを利用する方法
- RailsでAPIの簡単なトークン認証を実装する
- authenticate_with_http_token
- authenticate_or_request_with_http_token