SoftLayer Go SDK를 사용하여 제품 패키지에 대한 구성 정보를 검색하기 위해 GET 요청을 수행할 때 다음과 같은 문제가 발생할 수 있습니다. 객체 마스크에 지정되었음에도 불구하고 ItemCategory 속성이 채워지지 않습니다.
REST API 호출에 대한 기본 SoftLayer 엔드포인트가 사용 중인 엔드포인트와 다릅니다. XMLRPC가 되어야 합니다. "~/.softlayer" 파일이 있으면 XMLRPC 엔드포인트가 선택될 수 있습니다.
이 문제를 해결하려면 코드에서 엔드포인트를 REST 엔포인트로 전환하세요.
// Endpoint for RESTful API calls endpoint := "https://api.softlayer.com/rest/v3" // Create a new session with the REST endpoint sess := session.New(username, apikey, endpoint) // Get SoftLayer_Account service service := services.GetProductPackageService(sess) // Mask to get specific configuration properties mask := "itemCategory" // Call to retrieve configuration, including item category result, err := service.Mask(mask).Id(257).GetConfiguration() if err == nil { // ItemCategory data should now be available in the result object }
위 내용은 내 SoftLayer Go SDK GET 요청이 ItemCategory 데이터를 검색하지 못하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!