Jump to content
McKay Development

Rocket Scientist

Member
  • Posts

    5
  • Joined

  • Last visited

Rocket Scientist's Achievements

  1. For example. Always then i accepts trades i use this url https://steamcommunity.com/tradeoffer/'. $tradeID . '/accept and i'm sends my cookies and sessionid for login like this $data = array( 'sessionid' => $sessionId);$cookies = "....";curl_setopt($c, CURLOPT_COOKIE, $cookies);curl_setopt($c, CURLOPT_POSTFIELDS, http_build_query($data)); Do you mean that i need to make me login also in steamcommunity.com? If i it's right what do i need to send? Login, password, steamguardcode and something else?
  2. Hello, Guys! I have a few questions. What is difference between this urls? 1. https://steamcommunity.com/mobileconf/conf?p= 2. https://steamcommunity.com/mobileconf/ajaxop?op= How i understood to confirm some trade i need to use https://steamcommunity.com/mobileconf/ajaxop?op= Now i have this code: Parameters: $identity_secret = 'J**************************g=';$time = time();$tag = 'conf';// ---------> base64 confirmation key $buf = pack('NNa*', 0, $time, $tag); $hmac = hash_hmac('sha1', $buf, $identity_secret, true); $k = base64_encode($hmac);// ^--------- base64 confirmation key $steamid = '76561198252188406';$deviceid = 'android:' . preg_replace('/^([0-9a-f]{8})([0-9a-f]{4})([0-9a-f]{4})([0-9a-f]{4})([0-9a-f]{12}).*$/', '$1-$2-$3-$4-$5', sha1($steamid)); And create final url for post request:$url = 'https://steamcommunity.com/mobileconf/ajaxop?op=allow&p='.$deviceid.'&a='.$steamid.'&k='.$k.'&t='.$time.'&m=android&tag=conf'; But i get this: "{"success":false}" That is the problem? Maybe i need some more parapeters or i generate something not right?
  3. https://steamcommunity.com/mobileconf/ajaxop?op=conf&p=android:{DevideID}&a={SteamID}&k={base64 code}&t={Time}&m=android&tag=conf&cid={TradeofferID} this is for trade confirm, but witch url and parameters a need for confirm market listings?
×
×
  • Create New...