You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vardevRant=require('rantscript');//Get authentication token from devRant APIdevRant.login('username','password').then((response)=>{//Then post a rant to devRant with token gotten from previous request.devRant.postRant("Rant Text","Tags, Separated, By, Commas",response["auth_token"]).then((resp)=>{//Then console.log the rant data.console.log(resp);})})