I need to pass the below path as URI.
https://api.mytrade.com/oauth/accesstoken?grant_type=auth_code -d "code=DBvmp1o9"
I used the below solutions to implement escape charecter for the double-quotes which resulted in Internal Server error.
Solution 1: string URI = "https://api.mytrade.com/oauth/accesstoken?grant_type=auth_code -d \"code=" + accessCode + "\"";
Solution 2 (Verbatim string literal): string URI = @"https://api.mytrade.com/oauth/accesstoken?grant_type=auth_code -d ""code=" + accessCode + "";
Any help is greatly appreciated.
I would prefer a verbatim string with escaped double-quote: