Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. /* Twitter post tweet ajax $.post( "https://twitter.com/i/tweet/create", { authenticity_token: "f1622250023b8b08d0049e67a309e704bcf41fba", status: "2pm" } );*/
  2. function newTweet(){
  3. var RandomSaying = function(x,y){
  4. $.get("http://www.vocabula.com/feature/definitions.aspx", function(data){
  5. var page = $(data);
  6. var randomWord = $("class=\"Word\"", page).text().match(/[^']+/)[0];
  7. var randomDefinition = $("class=\"Definition\"", page).text().match(/[^']+/)[0];
  8. return randomWord + " " +randomDefinition
  9. function postTweet(){
  10. $.post( "https://twitter.com/i/tweet/create", { authenticity_token: "f1622250023b8b08d0049e67a309e704bcf41fba", status: RandomSaying() });
  11.  
  12.  
  13. }
  14.  
  15. })
  16. }
  17.  
  18.  
  19.  
  20.  
  21.  
  22. }
  23.  
  24. setInterval( "newTweet()", 10000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement