https://github.com/kevinleedrum/crmwebapiproxy
CRM Online Web API Proxy Server
https://github.com/kevinleedrum/crmwebapiproxy
api api-proxy azure azure-portal crm crm-online dynamics-365 express node nodejs proxy request webapi xrm
Last synced: 3 months ago
JSON representation
CRM Online Web API Proxy Server
- Host: GitHub
- URL: https://github.com/kevinleedrum/crmwebapiproxy
- Owner: kevinleedrum
- Created: 2017-04-10T16:21:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T16:23:07.000Z (over 8 years ago)
- Last Synced: 2025-03-27T12:37:01.664Z (6 months ago)
- Topics: api, api-proxy, azure, azure-portal, crm, crm-online, dynamics-365, express, node, nodejs, proxy, request, webapi, xrm
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRM Online Web API Proxy Server
All GET requests sent to this simple
[express](https://github.com/expressjs/express) server will be forwarded to the
CRM Online Web API using the [request](https://github.com/request/request)
module. The server will automatically retrieve and refresh the necessary access
token from the endpoint provided by the
[Azure Portal](https://portal.azure.com/)'s Azure AD App Registration page.## Setup
Modify `config.js` as needed. You'll need to register an app in [Azure Portal](https://portal.azure.com/) to get some of these values.
``` bash
# install modules
yarn# start server
node index.js
```