Skip to content

Instantly share code, notes, and snippets.

@eiriksm
Created November 2, 2014 15:38
Show Gist options
  • Save eiriksm/c24de5ac84dd4edfd1a7 to your computer and use it in GitHub Desktop.
Save eiriksm/c24de5ac84dd4edfd1a7 to your computer and use it in GitHub Desktop.
phonegap camera drupal js
$("#someid").click(function() {
navigator.camera.getPicture(picsuccess, onfail, { quality: 50 });
});
function picsuccess (data) {
url = "http://example.com/endpoint"; // Your services endpoint
var data = {
"file": data,
"filename": "test.jpg"
};
drupalServicesPostFile(data, url, postwith);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment