문제

Under Windows I am using Firefox and Live HTTP Headers - it works like a charm

I am reading this site : http://www.modlitwawdrodze.pl/home/

what I need is this request

GET /?eID=tx_mnmysql2json_Table&atribute[action]=getTable&atribute[tableName]=mwd_prayers&atribute[limit]=14&atribute[orderBy]=date_start%20asc&atribute[fields]=uid,title,sigla,period_of_liturgical,date_start,audio_file,audio_file_text&atribute[where]=pid=23%20AND%20deleted=0%20AND%20publish=1%20AND%20date_start%3E=1397340000%20AND%20date_start%3C1398549600

I want to read this request with Linux; do you know any script or application that can be run command-line?

I've tried lhhreplay but with no luck.

도움이 되었습니까?

해결책

As far as I understood the question, it is neccesary to perform a GET HTTP request to particular server.

The following tools may be helpful:

  • telnet. You can connect to specified remote server via specified port, and send requests/get responses.
  • wget. Linux command line HTTP client. Area of usage limited by protocols used for web browsing - HTTP, HTTPS, FTP, etc. Should be ok for the requested purpose.
  • curl. Long words short, similar to the previous tools.
  • Firefox with some addons installed, for example Firebug. Provides user-friendly UI for displaying network activity related to page opening.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top