<?php
$url = 'https://steamcommunity.com/tradeoffer/new/send';
\t $data = array(
\t \t 'sessionid' => $sessionId,
\t \t 'serverid' => '1',
\t \t 'partner' => '76561198316682086',
\t \t 'tradeoffermessage' => 'test',
\t \t 'trade_offer_create_params' => '{"trade_offer_access_token": "5xsvx0BF"}', \t
\t \t 'json_tradeoffer' => '{"newversion":true,"version":2,"them":{"assets":[],"currency":[],"ready":false},"them":{"assets":[{"appid":730,"contextid":"2","amount":1,"assetid":"8606185394"},{"appid":730,"contextid":"2","amount":1,"assetid":"8606185369"}],"currency":[],"ready":false}}'
\t);
\t $c = curl_init();
\t curl_setopt($c, CURLOPT_HEADER, false);
\t curl_setopt($c, CURLOPT_NOBODY, false);
\t curl_setopt($c, CURLOPT_URL, $url);
\t curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 0);
\t curl_setopt($c, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)");
\t curl_setopt($c, CURLOPT_COOKIE, $cookies);
\t curl_setopt($c,enter code here CURLOPT_POST, 1);
\t curl_setopt($c, CURLOPT_POSTFIELDS, http_build_query($data));
\t curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
\t curl_setopt($c, CURLOPT_HTTPHEADER, array('Referer: https://steamcommunity.com/tradeoffer/new/?partner=356416358&token=5xsvx0BF'));
\t curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0);
\t curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1);
\t curl_setopt($c, CURLOPT_CUSTOMREQUEST, strtoupper('POST'));
\t $response = curl_exec($c);
\t curl_close($c);
\t echo $response;
//get offerid in response. {"tradeofferid":12345..}
//but not found that offerid in getoffers
$getOffers = array(
\t \t "get_received_offers"=>'1',
\t \t "get_sent_offers"=>'1',
\t \t //"active_only"=>'1',
\t);
\t $getoffersData = array();
\t $getoffersData = $steam->getOffers($getOffers);
\t echo "<pre>";print_r($getoffersData); \t
?>
감사합니다. 그러나 여기 나는 그것을 말하고있다. 나는 하나의 웹 사이트 계정과 2 개의 사용자 계정을 갖고있다. 내 웹 사이트 계정에 자산을 전송하여 한 사용자가 게임을 만들고 두 번째 사용자 계정으로 게임을 결합하여 웹 사이트 계정에 자산을 보냅니다. getoffers 요청에 의해 제안 목록을 얻으십시오 buti 첫 번째 계정에서 생성 된 offerid가 목록에 없습니다 ... 이미 get_sent_offers를 설정하고 get_received_offers는 1입니다. –
아마도 일부 코드와 API 응답으로 질문을 업데이트해야합니다. 문제 설명을 기반으로 도움을 줄 수있는 사람은 많지 않습니다. – Koraktor