Last active
October 19, 2016 20:35
-
-
Save prakashn27/b6d1e8dc645eb528d1dfa30eb19e5643 to your computer and use it in GitHub Desktop.
Ssript to get the bing reward points
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PREREQ: | |
// STEP 1: | |
// Node | |
// install 'open' node package | |
// npm install -g open | |
// change this daily to some random name | |
var txt = 'asfasdfsdf'; | |
// STEP 2: | |
// get the cvid for your account This is a one time thing | |
// try to search through bing and you cansee it in the url it will be in the following format | |
var cvid = '&cvid=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; | |
var open = require('open'); | |
var url = 'https://www.bing.com/search?q='; | |
for(var i = 0; i < 15; i++) { // change the count according to your needs. | |
open(url + txt + i + cvid); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment