Skip to content

What does custom http tool do and how to use it?



What does it mean and what should we fill the empty space with?
What do the following terms do and how should we use them?
other leader lines ,post data,successful is matches.
There is no information in the documents

Thanked by 1Ritchievalens

Comments

  • SvenSven www.GSA-Online.de
    Well this is a tool to send automated queries to sites. The post data can have whatever you want to get sent as well as the normal headers. You can use spin syntax and define what is taken as a successfully submission. Think of it as a traffic bot or a tool to manipulate things. What you do with it is up to you.
  • ı using but no traffic (analytics google)
  • SvenSven www.GSA-Online.de
    google analytics uses javascript. This tool does not execute javascript!
  • Hi Sven - Can you please post a simple example?
    Thanks
  • SvenSven www.GSA-Online.de
    Well, use the right click on your favourite browser -> Inspect and copy the headers and POST date in that tool. Modify it to your needs and you are done. It will perform the same request again and again based on your setup.
    Thanked by 1Ritchievalens
  • Sven said:
    Well, use the right click on your favourite browser -> Inspect and copy the headers and POST date in that tool. Modify it to your needs and you are done. It will perform the same request again and again based on your setup.
    how to? I cant
  • s4nt0ss4nt0s Houston, Texas
    @serkan1071

    I'm not that experienced with Chrome dev tools, so there might be a better way to do this, but here is an example of how to view HTTP headers:



    Here's an example of HTTP headers as shown in the video:

    curl 'https://hackerdaily.io/_nuxt/32dc.js' \
      -H 'sec-ch-ua: "Not-A.Brand";v="99", "Chromium";v="124"' \
      -H 'Referer: https://hackerdaily.io/' \
      -H 'DNT: 1' \
      -H 'sec-ch-ua-mobile: ?0' \
      -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \
      -H 'sec-ch-ua-platform: "macOS"'

    You can paste that into Chat GPT and ask it to explain what each line means:

    1. curl 'https://hackerdaily.io/_nuxt/59062.js'

      • This part specifies the curl command and the URL from which data should be fetched. Here, it's trying to retrieve a JavaScript file from the website hackerdaily.io.
    2. Headers (-H options):

      • sec-ch-ua: "Not-A.Brand";v="99", "Chromium";v="124"
        • This is a request header typically sent by browsers to indicate browser and version details in a structured format. Here, it informs the server that the request comes from a browser with components branded as "Not-A.Brand" and "Chromium" with specific version numbers.
      • Referer: https://hackerdaily.io/'
        • The Referer header indicates the address of the webpage that linked to the resource being requested. It's used for analytics, logging, or security (to check if requests are coming from expected pages).
      • DNT: 1
        • DNT stands for "Do Not Track," which is a request header indicating the user's preference regarding tracking. A value of 1 means that the user does not want to be tracked.
      • sec-ch-ua-mobile: ?0
        • This header is used to indicate whether the request is being made from a mobile device. ?0 means it is not a mobile device.
      • User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
        • The User-Agent string provides detailed information about the user's browser, operating system, and device. This can influence how websites behave or appear.
      • sec-ch-ua-platform: "macOS"
        • This header communicates the platform (operating system) of the user's device, in this case, macOS. This can also be used for analytics or to tailor content specific to the platform.

    Here's an example of the headers added to the HTTP tool:



    Some additional information explained by @Sven:
    • The POST Data field can be left blank. In this case, the request would be a GET one; otherwise, it will be a POST.
    • All other fields can be left blank, except for the URL field.
    • You can also add cookies or anything else required to the header lines fields. @Sven mentioned that the most common ones get added automatically, such as "sec-ch-*" when, for example, a Chrome-like User Agent is used.
    • If you want to find more User Agents, check out: https://www.useragents.me/
    • You can set the timing/requests on the bottom left (double click) and can set the proxy filter on the bottom right. 
    • Of course the country filter is on the right side as well.
    Thanked by 1Ritchievalens
  • serkan1071serkan1071 TURKEY
    edited April 30
    Thank you for your answer, I will say thank you.
    https://prnt.sc/HbvItSCanpbT
    Thanked by 2s4nt0s Ritchievalens
  • What does this code do?

    is work?


  • nothing, I think you have to change URL webpage.com as it's likely example variable and its not a real site.
    web page is an example

  • So then I guess you answered your own question?
    :smile: I have no coding knowledge, I'm trying to learn by asking chatgpt. Will these codes work in SEO?
  • @backlinkaddict Please be Patient with newbies :smile:
  • @backlinkaddict - I know, you are extremely helpful, and it is appreciated.
    Thanks
Sign In or Register to comment.