NEED SCRIPT SCRAPER SEARCH BING WITH QUERY

genpota

Newbie
Joined
Sep 11, 2021
Messages
3
Reaction score
3
1695973923255.png

how to make this script running using query we search?
example : domain.com/seo-plus-one

so get content for seo plus one
 
Usually with Google you would use inurl: for finding urls with specific keywords in the url, but Bing does not use inurl:
However, they have their own counterpart, which is the following:
Code:
instreamset:(url):keywords
so in your case you would use
Code:
instreamset:(url):"seo plus one"
as the query string
 
Back
Top