Advertisement
Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. DELETE https://api.thingspeak.com/channels/4/feeds.json
  2. api_key = XXXXXXXXXXXXXXXX
  3.  
  4. HttpURLConnection urlConnection = null;
  5. try {
  6. URL url = new URL("http://api.thingspeak.com/channels/143467/feed.json?key=ADSJKFXMKVVJR32");
  7. urlConnection = (HttpURLConnection) url.openConnection();
  8. urlConnection.setRequestMethod("DELETE");
  9. urlConnection.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement