-
Notifications
You must be signed in to change notification settings - Fork 16
Reference Hacks
-
The restbed code generator has a bug where query parameters with boxcar_naming are put into the code with camelCase, so a query parameter of
connection_stringwill generaterequest->get_query_parameter("connectionString", "");. Until this can be fixed in the generator, this code needs to me manually edited to `request->get_query_parameter("connection_string", ""); -
C++ codegen includes
#include 'Object.h'. This header isn't used and causes a compile error. This line can be removed. -
C# codegen has
using IO.Swagger.Models. This isn't needed. Remove this if it causes problems. -
C# codegen doesn't like accepting bodies with type = "text/plain". It enforces "text/json" and I'm not sure how to override this :(
-
C# codegen doesn't like boxcar_naming. Just use camelCase everywhere.
-
The flask server we use for python doesn't look like it supports 2.7. we may only be able to test on 3.6 :(
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.