├── .DS_Store
├── .gitignore
├── Build
├── .DS_Store
├── GenericRestConnector.zip
└── GenericRestConnector
│ ├── .DS_Store
│ ├── GenericRestConnector.exe
│ ├── GenericRestConnector.exe.config
│ ├── GenericRestConnector.pdb
│ ├── GenericRestConnector.vshost.exe
│ ├── GenericRestConnector.vshost.exe.config
│ ├── GenericRestConnector.vshost.exe.manifest
│ ├── Newtonsoft.Json.dll
│ ├── QvxLibrary.dll
│ └── web
│ ├── apiKey.ng.html
│ ├── basicAuth.ng.html
│ ├── connectdialog.css
│ ├── connectdialog.js
│ ├── connectdialog.ng.html
│ ├── connector-main.js
│ ├── dictionary-factory.css
│ ├── factory.ttf
│ ├── noAuth.ng.html
│ ├── oAuth.ng.html
│ └── selectdialog.js
├── Factory.png
├── GenericRestConnector
├── .DS_Store
├── .vs
│ ├── GenericRestConnector
│ │ └── v14
│ │ │ └── .suo
│ └── config
│ │ └── applicationhost.config
├── Authentication
│ ├── APIKeyAuth.cs
│ ├── AuthBase.cs
│ ├── AuthInfo.cs
│ ├── Authentication.cs
│ ├── BasicAuth.cs
│ ├── NoAuth.cs
│ ├── OAuth1Auth.cs
│ ├── OAuthAuth.cs
│ └── dictionary.json
├── Catalog.cs
├── Connection.cs
├── ErrorHelper.cs
├── GenericRestConnector.csproj
├── GenericRestConnector.sln
├── GenericRestConnector.v12.suo
├── Newtonsoft.Json.dll
├── Paging
│ ├── OffsetLimitPaging.cs
│ ├── PageInfo.cs
│ ├── PagePaging.cs
│ ├── Pager.cs
│ └── PagingBase.cs
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── QvxLibrary.dll
├── RESTHelper.cs
├── Server.cs
├── TableCache.cs
├── TokenResponse.cs
├── app.config
├── bin
│ ├── .DS_Store
│ └── x64
│ │ ├── .DS_Store
│ │ └── Release
│ │ ├── GenericRestConnector.exe
│ │ ├── GenericRestConnector.exe.config
│ │ ├── GenericRestConnector.pdb
│ │ ├── GenericRestConnector.vshost.exe
│ │ ├── GenericRestConnector.vshost.exe.config
│ │ ├── GenericRestConnector.vshost.exe.manifest
│ │ ├── Newtonsoft.Json.dll
│ │ ├── QvxLibrary.dll
│ │ └── web
│ │ ├── apiKey.ng.html
│ │ ├── basicAuth.ng.html
│ │ ├── connectdialog.css
│ │ ├── connectdialog.js
│ │ ├── connectdialog.ng.html
│ │ ├── connector-main.js
│ │ ├── dictionary-factory.css
│ │ ├── factory.ttf
│ │ ├── noAuth.ng.html
│ │ ├── oAuth.ng.html
│ │ └── selectdialog.js
├── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenericRestConnector.Properties.Resources.resources
│ │ ├── GenericRestConnector.csproj.FileListAbsolute.txt
│ │ ├── GenericRestConnector.csproj.GenerateResource.Cache
│ │ ├── GenericRestConnector.csprojResolveAssemblyReference.cache
│ │ ├── GenericRestConnector.exe
│ │ ├── GenericRestConnector.pdb
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── generic-rest-connector.csproj.FileListAbsolute.txt
│ │ ├── generic-rest-connector.csproj.GenerateResource.Cache
│ │ ├── generic-rest-connector.exe
│ │ ├── generic-rest-connector.pdb
│ │ └── generic_rest_connector.Properties.Resources.resources
│ ├── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenericRestConnector.Properties.Resources.resources
│ │ ├── GenericRestConnector.csproj.FileListAbsolute.txt
│ │ ├── GenericRestConnector.csproj.GenerateResource.Cache
│ │ ├── GenericRestConnector.exe
│ │ ├── GenericRestConnector.pdb
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── x64
│ │ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenericRestConnector.Properties.Resources.resources
│ │ ├── GenericRestConnector.csproj.FileListAbsolute.txt
│ │ ├── GenericRestConnector.csproj.GenerateResource.Cache
│ │ ├── GenericRestConnector.csprojResolveAssemblyReference.cache
│ │ ├── GenericRestConnector.exe
│ │ ├── GenericRestConnector.pdb
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenericRestConnector.Properties.Resources.resources
│ │ ├── GenericRestConnector.csproj.FileListAbsolute.txt
│ │ ├── GenericRestConnector.csproj.GenerateResource.Cache
│ │ ├── GenericRestConnector.csprojResolveAssemblyReference.cache
│ │ ├── GenericRestConnector.exe
│ │ ├── GenericRestConnector.pdb
│ │ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── verpatch.exe
└── web
│ ├── apiKey.ng.html
│ ├── basicAuth.ng.html
│ ├── connectdialog.css
│ ├── connectdialog.js
│ ├── connectdialog.ng.html
│ ├── connector-main.js
│ ├── dictionary-factory.css
│ ├── factory.ttf
│ ├── noAuth.ng.html
│ ├── oAuth.ng.html
│ └── selectdialog.js
├── Local.png
├── Public.png
├── README.md
└── Thumbs.db
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/websy85/generic-rest-connector/cf769699426873ef346f17a45f983e8b05f0811e/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Build/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/websy85/generic-rest-connector/cf769699426873ef346f17a45f983e8b05f0811e/Build/.DS_Store
--------------------------------------------------------------------------------
/Build/GenericRestConnector.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/websy85/generic-rest-connector/cf769699426873ef346f17a45f983e8b05f0811e/Build/GenericRestConnector.zip
--------------------------------------------------------------------------------
/Build/GenericRestConnector/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/websy85/generic-rest-connector/cf769699426873ef346f17a45f983e8b05f0811e/Build/GenericRestConnector/.DS_Store
--------------------------------------------------------------------------------
/Build/GenericRestConnector/GenericRestConnector.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/websy85/generic-rest-connector/cf769699426873ef346f17a45f983e8b05f0811e/Build/GenericRestConnector/GenericRestConnector.exe
--------------------------------------------------------------------------------
/Build/GenericRestConnector/GenericRestConnector.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
If you already have your token and token secret you don't need to authorize, simply enter them below
14 | Authorize 15 |If you already have your access token or refresh you don't need to authorize, simply enter it below
24 | Authorize 25 |If a Refresh Token was provided please use that instead of the Access Token.
28 |If you already have your token and token secret you don't need to authorize, simply enter them below
14 | Authorize 15 |If you already have your access token or refresh you don't need to authorize, simply enter it below
24 | Authorize 25 |If a Refresh Token was provided please use that instead of the Access Token.
28 |If you already have your token and token secret you don't need to authorize, simply enter them below
14 | Authorize 15 |If you already have your access token or refresh you don't need to authorize, simply enter it below
24 | Authorize 25 |If a Refresh Token was provided please use that instead of the Access Token.
28 |