Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using RestSharp;
- namespace TestApplication {
- class Test {
- static void Main(string[] args) {
- var client = new RestClient("https://api.zenrows.com/v1/?apikey=<YOUR_ZENROWS_API_KEY>&url=https%3A%2F%2Fscrapeme.live%2Fshop%2FPikachu%2F&js_render=true&css_extractor=%257B%2522product-price%2522%253A%2522%2523product-752%2520%253E%2520div.summary.entry-summary%2520%253E%2520p.price%2520%253E%2520span%2522%257D");
- var request = new RestRequest();
- var response = client.Get(request);
- Console.WriteLine(response.Content);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement