This is a migrated thread and some comments may be shown as answers.

move post data to composer

1 Answer 91 Views
Extensions and Customization
This is a migrated thread and some comments may be shown as answers.
dauglas
Top achievements
Rank 1
dauglas asked on 10 Feb 2016, 10:08 AM

Hello everybody.

I need some extension to move post request to composer automatically if script name getdata.php (for example).

I searched  a lot of exctensions but could not find any wich works with composer.

Is it hard to create it using c#? 

1 Answer, 1 is accepted

Sort by
0
Sergey
Top achievements
Rank 1
answered on 25 Aug 2016, 02:12 PM

Hello

You can do this with FiddlerScript.

 

In method OnBeforeRequest add this code:

 if(oSession.fullUrl.Contains("getdata.php")){
            FiddlerApplication.DoComposeByCloning(oSession);
        }

 

Tags
Extensions and Customization
Asked by
dauglas
Top achievements
Rank 1
Answers by
Sergey
Top achievements
Rank 1
Share this question
or