php – 用户昵称获取steamID

前端之家收集整理的这篇文章主要介绍了php – 用户昵称获取steamID前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能通过他的昵称获得用户的steamID?我没有在steam API文档中找到解决方案.我找到的唯一一件事是 http://dev.dota2.com上的旧帖子:

You can use this to search the Dota2 API directly using the player_name option of GetMatchHistory
You can then find their 32-bit ID in the list and then convert it to a 64-bit ID.

但是现在GetMatchHistory函数没有player_name参数.现在它需要account_id.

那么像http://dotabuff.com/search?q=Dendi这样的网站如何获得这些信息呢?

您可以使用

获得http://api.steampowered.com/ISteamUser/ResolveVanityURL/v0001/

从Steam配置文件自定义URL获取SteamID.见http://wiki.teamfortress.com/wiki/WebAPI/ResolveVanityURL

您无法从某人的当前昵称获取steamID,因为昵称可能会更改并且不是唯一的.

原文链接:https://www.f2er.com/php/134380.html

猜你在找的PHP相关文章