Guest User

Untitled

a guest
Jul 19th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. String username = "username_here";
  2. String password = "password_here";
  3. String posterous_url = "url_string_here";
  4. String read_data = "";
  5.  
  6. void setup() {
  7. try {
  8. URLAuthReader.authenticated_http_request(posterous_url, username, password);
  9. read_data = URLAuthReader.read_http_request();
  10. println(read_data);
  11. }
  12.  
  13. catch (Exception e) {
  14. println("error reading data from the web");
  15. }
  16. }
  17.  
  18. void draw() {
  19. }
Add Comment
Please, Sign In to add comment