Skip to content

Commit a67b316

Browse files
authored
Update README.md
1 parent 7330e16 commit a67b316

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ curl -v -H "Content-Type: application/json" -H "Authorization: Bearer {your_toke
108108
- FIRST, You can only send ONE METHOD with a chain; you cannot send a PUT and POST method in the same call. But you can just default every other call to a SAFE call (ie GET) as long as client has AUTHORITY to the endpoint. SECOND, since it can only have one UNSAFE METHOD, you can only send ONE DATASET. We made it to be as simple as possible while encompassing the most commonly used calls thus simplifying the processing and the client call.
109109
- **Isn't it BAD to send form data with a GET request? I thought you could only send URI encoded data??**
110110
- Per W3C guidelines : 'A client SHOULD NOT generate content in a GET request unless it is made directly to an origin server that has previously indicated, in or out of band, that such a request has a purpose and will be adequately supported'. API Chaining(tm) is that direct connection with purpose. It provides the necessary backend checks and limits what can be sent.
111+
- **Passing a timestamp causes an error and no data is returned with a status 200??**
112+
- If you are passing an Object, said object MUST be converted to a String. Json does not understand objects and everything is a String. make sure when writing your tests to do the conversion in the controller so that all variables are passed as Java.lang variables (ie String, Integer, etc)
111113

112114

113115
# Flowchart

0 commit comments

Comments
 (0)