feat(disqus): add disqus integration
This commit is contained in:
15
packages/backend/src/apps/disqus/common/add-auth-header.js
Normal file
15
packages/backend/src/apps/disqus/common/add-auth-header.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { URLSearchParams } from 'url';
|
||||
|
||||
const addAuthHeader = ($, requestConfig) => {
|
||||
const params = new URLSearchParams({
|
||||
access_token: $.auth.data.accessToken,
|
||||
api_key: $.auth.data.apiKey,
|
||||
api_secret: $.auth.data.apiSecret,
|
||||
});
|
||||
|
||||
requestConfig.params = params;
|
||||
|
||||
return requestConfig;
|
||||
};
|
||||
|
||||
export default addAuthHeader;
|
Reference in New Issue
Block a user