This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open Terminal: | |
keytool -exportcert -alias androiddebugkey -keystore ~/Library/Application Support/Titanium/mobilesdk/osx/6.0.1.GA/android/dev_keystore | openssl sha1 -binary | openssl base64 | |
keytool -exportcert -alias tidev -keystore ~/Library/Application\ Support/Titanium/mobilesdk/osx/6.0.1.GA/android/dev_keystore -list -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var xmlrpc = require('./lib/xmlrpc'); | |
var client = xmlrpc.createClient({ | |
url: 'https://api.example.com/XML-RPC' | |
, username: 'xxxx' | |
, password: 'xxxx' | |
}); | |
client | |
.call('foo.methodName') |