Cloudrail-설정

CloudRail 앱 등록

이 링크를 사용하여 새 앱을 만듭니다 (먼저 로그인해야 할 수 있음)- https://developers.cloudrail.com 앱 요약에서 CloudRail 라이선스 키를 찾을 수 있습니다.

Facebook 앱 등록

이 링크를 사용하여 새 앱을 만듭니다 (먼저 로그인해야 할 수 있음)- https://developers.facebook.com/apps/. 그런 다음 '새 앱 추가'버튼을 클릭하고 '기본 설정'을 선택한 다음 새 앱을 만듭니다. 대시 보드 섹션에서 앱 키 (클라이언트 ID) 및 앱 시크릿 (클라이언트 시크릿)을 찾습니다.

Go to 'Add Product' and select 'Facebook Login'. Set the Redirect URI to 'http://localhost:12345/auth/redirect/facebook'.

Register a Twitter app

Use this link to create a new app (you may have to login first) − https://apps.twitter.com/ Click the 'Create New App' button and fill in the required details. Click on 'Keys and Access Tokens' and you'll find your App Key (Client ID) and App Secret (Client Secret). Set the Redirect URI to 'http://localhost:12345/auth/redirect/twitter'.

Initialize a new Node.js project

Make sure you have Node.js installed, create a new folder, initialize the package.json and install Express and CloudRail by issuing the following commands in the console (or the equivalent commands on non-Unix OSs) −

mkdir myProject
cd myProject
npm init
npm i --save express cloudrail-si