https://github.com/mikeludemann/loadjson-auth
A function for loading external JSON files with authentication and callback method
https://github.com/mikeludemann/loadjson-auth
auth external-files json url
Last synced: 2 months ago
JSON representation
A function for loading external JSON files with authentication and callback method
- Host: GitHub
- URL: https://github.com/mikeludemann/loadjson-auth
- Owner: mikeludemann
- License: mit
- Created: 2019-07-29T11:49:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T11:56:48.000Z (almost 7 years ago)
- Last Synced: 2025-03-28T02:48:36.942Z (over 1 year ago)
- Topics: auth, external-files, json, url
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# loadXML - Auth
A function for loading external JSON files with callback methods
## Example
```
var auth = authentication("user","password");
loadJSONAuth("./src/script/data.json", function(response) {
var data = JSON.parse(response);
console.log(data);
}, auth);
```