Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With .NET I create a new Product with SOAP V2. All fields are correctly inserted, without the CATEGORY. Category is always empty ! (I Have a Category with the ID 37)

    Dim para As New SOAP2.catalogProductCreateEntity

    Dim ar(0) As String
    ar(0) = "37"

    para.category_ids = ar
    para.name = strRefmatID
...
    rc = gService.catalogProductCreate(gSession, "simple", "64", strRefmatID, para, "0")

What is wrong? Thank you very much!

share|improve this question

1 Answer

Try category_id or entity_id, not category_ids. Look in the table structure to see where is the problem .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.