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
#### The following example returns the response of how you requested from httpbin.co. You should see the ‘A123’ header in the header section of the response.
27
+
28
+
```typescript
29
+
const client =newScrapeDo("example_token");
30
+
const response =awaitclient.doRequest("GET", {
31
+
url: "https://httpbin.co/anything",
32
+
extraHeaders: {
33
+
"sd-A123": "Extra Header",
34
+
},
35
+
});
36
+
37
+
console.log(response.data);
38
+
```
39
+
40
+
## More details
41
+
42
+
#### [Documentation for more information](https://scrape.do/documentation/?utm_source=github&utm_medium=node-do)
### This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.
49
+
50
+
## Disclaimer
51
+
52
+
### Any damages arising from the use of the library or service or any other legal situation cannot be associated with the scrape.do legal entity and team. The responsibility lies entirely with the user.
0 commit comments