Home > Net >  How to convert response data from rapidapi.com in c# objects
How to convert response data from rapidapi.com in c# objects

Time:12-28

I have e response from rapidapi

I need the "data" content.

rapidapi2

CodePudding user response:

The error message said that the data you received is not a valid json format. It needs a colon after 1item.

{"1 item":{ 
             .....  
           }                     
}

Recheck the renponse that you could get the correct json data.

  • Related