✅ Exception being thrown when attempting to use Weather api
This method is what I'm using to try and use the weather api. Im not to sure what I did wrong since there are no errors.
17 Replies
What exception?
Also, what kind of an app is it? WPF? Winforms?
Catch (Exception ex)
Winforms
Yeah, aight, that's where the exception occured
But what exception?
Exception thrown: 'Newtonsoft.Json.JsonReaderException' in Newtonsoft.Json.dll
Meaning something's off with the JSON
Use the debugger to check that
Could be that you're not getting JSON at all, or that it differs from the class you're trying to deserialize it to
I was wondering if its my apiurl maybe
if that's really your API key you should remove it from here and rotate it
You can stop wondering and gain certainty after seeing what gets returned from the API
Im sure this discord is full of kind individuals who arent weird
it's a public discord, and on top of that these threads are published on the internet
It just keeps throwing me the exception
you need to remove the json stuff and just look at the raw response
or make the request in postman or something
Ok
So its working things are going wrong when I try to convert it
So what are you getting from this call?
What I want the weather details just not formated
I just have to find a way to convert it now
I saw a post saying u cannot update ui from a background thread
could that of been causing the issue?
no, you're getting a JsonReaderException
which means the error is related to json serialization
the actual details in that exception are needed to get more specific about what's going wrong
U right u right
Alr
I got it working
I just had lines that weren't needed
Completed for those who may need in the future.