1 |
GET |
curl -G --data-urlencode ids="id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs" |
|
2 |
POST |
curl -d ids="id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs" |
|
3 |
POST |
curl -H "content-type:application/json" -d '["id1", "id2"]' "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs" |
|
4 |
POST |
curl -H "content-type:text/plain" -d "id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs" |
|
5 |
POST |
curl -H "content-type:text/plain" --data-binary @filename "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs" |
|