steam官网steam无法显示好友该网页

Unaffiliated
Steamworks Documentation
Steam Inventory Web Functions
These are structured web pages that you can redirect the user to.Item CartItemCart can be used to send a cart containing one or more items to be purchased via Steam. You'll need to build and maintain the cart within your own game or UI, then send the contents of that cart to Steam for purchase and activation of those items.Your store should direct the client browser to POST directly to https://store.steampowered.com/itemcart/checkout using a web form. From there, depending on the browser, the user will experience slightly different purchase flows:Stand-alone web browser (Chrome, Internet Explorer, etc): If wallet currency does not match, immediate redirect to return url with result code indicating mismatch (this provides an opportunity to modify the local currency of the store and resume checkout). Shopping cart with individual line item costs in user currency, total cost in user currency, and &Purchase& / &Cancel& buttons. If Cancel is selected, transaction will be cancelled with 'user declined' status. If Purchase is selected, transaction will be automatically finalized. User will be redirected to the appropriate return URL.Steam Overlay / Big Picture web browser: Same as Standard Web Browser with no initial sign- user cannot change accountIn-game web browser with Steamworks API authentication cookie: If wallet currency does not match, immediate redirect to return url with result code indicating mismatch Web page displays notice to use the Steam Overlay to authorize the purchase Steam Overlay will activate automatically with a purchase/cancel dialog box Overlay closes, flow continues as Standard Web Browser after user selects Purchase or CancelExample HTML &form action=&https://store.steampowered.com/itemcart/checkout& method=&post&&
&input type=&hidden& name=&appid& value=&234560&&
&input type=&hidden& name=&cart& value=&&&
&input type=&hidden& name=&total& value=&USD499&&
&input type=&hidden& name=&sandbox& value=&0&&
&input type=&hidden& name=&return& value=&http://mystore.com/checkout.php?fromsteam=1&cartid=BA13522FE31&result=[RESULT]&orderid=[ORDERID]&steamid=[STEAMID]&name=[USERNAME]&cc=[CURRENCY]&auth=[AUTH]&&
&input type=&hidden& name=&auth& value=&9abf38a28e8fa780f5be&&
&input type=&hidden& name=&lang& value=&en&&
&input type=&image& src=&checkout.png& alt=&Checkout&&
appid - is your app id number. cart - is item definition index numbers separated by commas, with optional xN or *N quantity suffix. order does not matter. duplicates are treated as additional quantity. total - is the expected total cost of the cart. checkout will fail if this does not match. format is upper-case currency type (USD, EUR, GBP, etc) followed by numeric total. sandbox - is 1 or 0. note that sandbox=1 will fail whenever sandbox testing is not specifically enabled for your app in Steamworks. return - is a URL that the user will be sent to when checkout is complete and ready to be Finalized. optional substitution fields described below. auth - is the HMAC-SHA1 authentication code computed from the five preceding values in order, separated by newlines, using your Itemcart Secret Key. See sample PHP at end of document. Your secret key is visible from the Economy tab of your app's Steamworks configuration page. lang - is an optional ICU language code ('en' for English) that sets the default language on the checkout page. This optional field is not authenticated.The following strings will be substituted in the return url: [RESULT] - result code ( 0 = success, 1 = user declined, 2 = currency mismatch, 3 or above is a internal failure code ). [ORDERID] - 64-bit unsigned decimal integer representing Steam &orderid&; can be used with ISteamMicroTxn/QueryTxn api to verify transaction details - blank if user cancelled. Matches report generated by ISteamMicroTxn/GetReport [STEAMID] - 64-bit unsigned decimal integer representing user's Steam ID. Blank if user declined to log in. [USERNAME] - the user's chosen display name, encoded appropriately for a URL parameter. Blank if user declined to log in. CAUTION: sanitize for display - beware users named & script&! [CURRENCY] - currency code for user's wallet (USD, EUR, etc) - blank if user declined to log in. [AUTH] - the HMAC-SHA1 of the entire server-relative URL (eg, starting with &/checkout.php&) computed as if [AUTH] were an empty string and everything else were already substituted. The HMAC key is your Itemcart secret key.Sample PHP to generate &auth& value: define( 'SECRET_ITEMCART_KEY', '' );
$appid = '234560';
$cartstring = '';
$totalstring = 'USD499';
$sandbox = '0'; // or '1'
$returnurl = 'http://mystore.com/checkout.php?fromsteam=1&cartid=BA13522FE31&result=[RESULT]&orderid=[ORDERID]&steamid=[STEAMID]&name=[USERNAME]&cc=[CURRENCY]&auth=[AUTH]';
$auth = hash_hmac( &sha1&, &$appid\n$cartstring\n$totalstring\n$sandbox\n$returnurl&, SECRET_ITEMCART_KEY );
Sample PHP to validate return URL: hash_hmac( &sha1&, str_replace( $_GET['AUTH'], &&, $_SERVER[&REQUEST_URI&] ), SECRET_ITEMCART_KEY ) === $_GET['AUTH']
The authentication code in the sample HTML form is computed as if the Itemcart secret key is all ones (32 characters long). Given the other field values (appid, cart, total, sandbox, return, lang) you should be able to replicate the 'auth' if your generated 'auth' value does not match, your code likely has errors which will prevent checkout from working.BuyItemBuyItem is a simple structured web page that allows a user to buy an in-game item using a simple Steam purchase UI.URI constructionConstruct a URI for your item as follows, and direct the player to it: https://store.steampowered.com/buyitem/:appid/:itemdefid/:quantityParameters appid: The ID of the application associated with the item. itemdefid: The ItemDef ID to present for purchase. This item must have a price (or price_category) and must not be store_hidden. See the Item Schema. quantity: Optional. Multiple instances of a if left off, a default of 1 is assumed.NotesThis simplified page can only be used to sell instances of a single ItemDef (including a sellable bundle). For a full-featured shopping cart, see ItemCart.See the Inventory Schema documentation for details on specifying items for sale, including pricing and bundles.【图片】求助!!刚申请个steam账号,为什么网页版能登陆客户端登录不了_steam吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0可签7级以上的吧50个
本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:1,677,588贴子:
求助!!刚申请个steam账号,为什么网页版能登陆客户端登录不了
一开始下载客户端,成功申请了账号,结果网页版登录不了用网页版通过邮箱修改了账号密码,网页版登录上了,(我只是为了收一个朋友从QQ邮箱发来的游戏礼物)礼物从网页版收到自己账下了,结果客户端登录不上,提示密码错误,刚刚改的密码不可能输入错误啊,我网页版退出又登陆还是可以登录的,随时可以。客户端死活登陆不了,再点客户端的“我无法登陆”寻思用客户端修改一下密码,只要登陆上就可以玩那个礼品游戏了,结果就一直“pleas wait”一个小圈转啊转然后“Error”说“pleas try again later”太难了,玩个游戏
你是不是网络不好啊。登录的时候用ID登录啊。
网络抽风了吧,我反正没遇到过,也许你账号密码改来改去记叉了
Thonker兄出招帮忙,重启电脑、改DNS、清空C:\Program Files (x86)\Steam\package 目录,症状还是如下这样——这张图是,网页版可以正常登陆的前提下,客户端反应的账号密码错误同样的账号密码,网页可以登录,客户端不可以。于是我点选“我无法登陆”(我特么确实一点法都没有了)于是客户端让我“please wait”于是我就wait于是就这样了,尝试了他mia的十几遍,包括卸载清除steam重新安装,都不好使。哦,顺便给大家看一下我的网速我觉得别的不敢保证,妈的打个游戏这网络速度还是问题嘛?吐槽归吐槽,我也心死了,只是告知大家steam会出这么奇葩的问题
最后怎么解决的
我现在也是
同病相连。。。这steam还是有坑的啊,高估了!!!
楼主我知道什么原因
贴吧热议榜
使用签名档&&
保存至快速回贴当下软件园 / 汇聚当下最新最酷的软件下载站!
热门搜索:
您的位置:
> steam打不开怎么办 steam平台连接错误解决方法
steam打不开怎么办 steam平台连接错误解决方法
steam打不开怎么办?好多玩家在使用过程中都出现steam打开错误提示,导致玩家无法进入steam畅玩游戏,那么到底是什么原因导致steam连接错误呢?为此,小编收集了一些解决问题的方法,如果你也出现这样的问题了,不妨跟着小编一起看看吧!
类别:游戏工具 &&大小:1.38M &&&语言:简体中文
导致steam错误的原因有很多有些很复杂,在此,小编总结了一下并附带解决方法供大家参考:
原因一:你的本地网络不正常导致和steam正常
使用浏览器进入steam官网查看。
原因二:本地或者本地导致
把本地杀毒软件暂时禁用,以及采用管理员的方式运行程序。
原因三:steam平台更新不了导致
steam平台安装的硬盘满了或者更新空间不足,导致无法更新无法运行。
原因四:如果本地网络正常,steam硬盘空间足够,那么可能就是steam问题或者路由器配置问题。因为STEAM的网络故障非常多也非常烦,官网给出的解释路由器的配置问题,你可以看一下你的路由器配置。
原因五:steam安装包中package文件夹缓存太多
打开安装steam的文件夹,打开package的文件夹打开后删除package文件夹里面有的升级文件,删除后重启steam平台客户端,等待steam平台update。
出现steam-fatal error的错误:
原因:你把steam安装在含有中文目录或者非英文符号下导致
把安装含有中文的文件夹名改成英文,重新运行steam就可以了。
好了,以上就是出现steam错误的一些原因以及解决办法,希望大家在看完之后都可以如愿解决这些问题,如果你在steam升级中出现问题,可以去看看。
BT软件哪个好?这是诸多用户的心声,很多用户都想方便快捷的下载到自己心仪的网络资源,相信很多宅男也会用BT软件下载一些“不能说的秘密”,现在,让我们一起看看BT软件中那些可以边下边播的下载神器吧!
由于360云盘突然宣布关闭,这让很多用户表示压力上大。用户里面的资源这该如何是好,其实可以转到百度网盘上,那么360云盘数据怎么转存百度云盘呢?接下来坐上车跟上司机的步伐吧!
玩家如果在steam上购买游戏有觉得这个游戏不好玩,那么你就可以试着去退款。那么steam上游戏怎么退款,小编来教教大家。
很多用户在使用qq旋风下载东西的时候总是下载最后99.9%的时候速度没有了,然后就怎么也不动了,强迫症不能忍,那么qq旋风下载到最后不动了怎办,小编就来教教大家。
QQ旋风边下边播是一个好东西,如果你的网速够快,完全可以一边下载一边欣赏大片,qq旋风边下边播怎么用,小编来给大家说一说。
Copyright (C)
www.downxia.com.All rights reserved.> 文章正文
  可能不少玩家发现了,从今天下午4点左右,当玩家想打开Steam官网时,会发现网站的载入时间特别长,而经过长时间载入之后,等待玩家的并非是蓝黑色的熟悉界面,而是白底黑字的错误提示:处理请求时发生错误。
  An error occurred while processing your request.&
  Reference #97.b42c0e6b..34fd23e9
Steam官网已经无法访问
  玩家最直观的反映就是Steam官网挂了,无论是想要浏览商店内容还是购买及试玩,都无法获得应有的服务。不仅仅是Steam商店出现问题,就连Steam玩家社区目前也无法正常登陆。即便是打开客户端,虽然能正常更新游戏,但是同样无法查阅商店内容(玩家社区可通过客户端正常打开)。
打开首页提示请求出错
  至于为什么会出现这个问题,很容易让人联想到黑客的攻击。在之前的时间,XBOX Live和PSN都经常受到攻击并导致服务中断,不过Steam平台很少出现这些问题。
Steam客户端也不能访问商店
  另一个可能就是Steam目前正在进行维护,毕竟今天各大游戏媒体对其账号安全问题发生质疑,可能官方正在修补相关漏洞,但是并没有事先告知玩家不像是恰当的做法。
  由于现在正是美国地区的清晨时分,该地区玩家受到的影响较小,可能等到正常上班时间会解决相应问题,我们将继续关注此次Steam官网无法访问的情况,并告知玩家官方的表态和事件的原委,请玩家密切关注巴士单机游戏后续报道。提示信息 -
天下网吧论坛 -
Powered by Discuz!
后使用快捷导航没有帐号?
Powered by

我要回帖

更多关于 steam页面无法显示 的文章

 

随机推荐