An open API service indexing awesome lists of open source software.

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

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);
```