babelshift / SteamWebAPI2

🎮 C# / .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.
MIT License
263 stars 43 forks source link

Convert AuthenticateUserTicket to strong typing #111

Closed Hona closed 3 years ago

Hona commented 3 years ago

The possible responses are:

Fail

{
   "response":{
      "error":{
         "errorcode":3,
         "errordesc":"Invalid parameter"
      }
   }
}

Success

{
   "response":{
      "params":{
         "result":"OK",
         "steamid":"7650000000009496",
         "ownersteamid":"7650000000009496",
         "vacbanned":false,
         "publisherbanned":false
      }
   }
}
babelshift commented 3 years ago

Thanks for the contribution!

Hona commented 3 years ago

No worries!

I use this as a nuget package, so I'm just wondering when it would get updated?

babelshift commented 3 years ago

@Hona I've just pushed out 4.2.7. Let me know how it goes.

Hona commented 3 years ago

Ok I just tested it, works great! Thanks for pushing it out