Skip to content

Instantly share code, notes, and snippets.

@veroborges
Created August 1, 2013 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veroborges/6136012 to your computer and use it in GitHub Desktop.
Save veroborges/6136012 to your computer and use it in GitHub Desktop.
String url = "https://yiftee.com/api/v1/gifts/send.html?";
String * params = @"api_key=9eb346a265092b53zgh4bcd238708fd63&sender_name=Donna&recipient_name=Aldo&recipient_email=aldo@yiftee.com";
WebView webView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webview.loadUrl(url + params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment