Suppose we have a JSON object like this:
{
name: 'Tony',
age: '20',
birthday: '20180101',
}
What is the best way to convert it into parameters that can be appended at the end of a RESTful GET API URL, such as the one below?
/API/data?name=Tony&age=20&birthday=20180101