There was a sudden problem today when the network request returned in the UWP: Id =, Status = waitingforactivation, Method = "{null}", Result = "{not yet computed}.
The request API is correct, in-browser testing can request data, but executing the program is not getting the correct data. Depressed for a long time, suddenly discovered, because I write the method of the asynchronous network request, and when called, forget to await the async keyword, resulting in no asynchronous call. So returns the id =, Status = waitingforactivation, Method = "{null}", Result = "{not yet computed}. The solution is to add an await, async, to use Async.
Welcome to the students who love UWP development Dabigatran: 193148992 Learn to communicate together.
UWP Development: Network request data return: Id =42, Status = waitingforactivation, Method = "{null}", Result = "{Not yet computed}