Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s2b/xmlrpc.js
https://github.com/s2b/xmlrpc.js
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/s2b/xmlrpc.js
- Owner: s2b
- License: mit
- Created: 2013-05-28T18:14:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-28T20:11:30.000Z (over 11 years ago)
- Last Synced: 2024-10-28T15:25:22.152Z (about 2 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
xmlrpc.js
=========This is a tiny JavaScript library that allows you to connect to [XML-RPC](http://en.wikipedia.org/wiki/XML-RPC) services (e. g. WordPress) from within the browser using AJAX requests. Due to the AJAX functionality and isArray checks the library requires a jQuery-style library that implements $.ajax() and $.isArray().
Same-Origin-Policy
------------------[(Wikipedia)](http://en.wikipedia.org/wiki/Same_origin_policy)
Please note that due to reasonable security measures of modern web browsers (Same-Origin-Policy) this library only works in some edge cases:
* Browser extensions (e. g. Google Chrome)
* Hybrid Apps (e. g. [PhoneGap](http://phonegap.com/), [BlackBerry WebWorks](http://developer.blackberry.com/html5/))
* [PhantomJS](http://phantomjs.org/)
* … and similar environmentsIn all those cases you probably have to white-list the domains you want to access.