Hello everyone.

In my open API I've declared parameter group:
      produces:
       - application/json
       - application/xml
      parameters:      
        - name: group
        description: ids of group
        in: query
        type: array
        collectionFormat: multi
        items:
          type: integer

I used a codegen to generete php API client. 
Now I'm trying pass php array to function

$array = [24,25,26];
$Api->getProducts($array)


except url  like http://localhost/products?group=26&group=24
which is ok. But genereted url is 
http://localhost/products?group=0%3D26%261%3D24 

is there some bug or I made mistake ?

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to