תגובה: web api with json
אני נתקל הרבה פעמים בפרוייקטים שאני אמור להתממשק עם json . אשמח להסבר כללי איך ההגיון ואיך זה עובד. לא הצלחתי להבין מהמדריך כאן.
כלומר אם אני מבין נכון ה json זה רק הדרך לארוז את האובייקט, ואם זה נכון אז זה אומר שAPI אמור להכיר את השם של הjson שאני שולח, כלומר לקרוא לזה בשם שהם מכירים מה זה בשביל שידע לפתוח את זה ולקרוא את המשתנים שהם הביאו.
דבר נוסף ואיך שולחים את זה עם הפונקצייה fetch? ואיך בסוף המידע מתקבל וקוראים אותו.
תודה רבה.
לדוגמא ממדריך:
3.1 Login API
Request Method
The Login API sends a request for the session creation in the system.
Request Example: https://iot.hotmobile.co.il:8080/ipa/apis/json/general/login
Request Parameters
Element Type Presenc
e Annotation
Username string M The username of the user requesting to open the session.
Password string M The password of the user requesting to open the session.
Response Method
LoginResponse is a response to a Login Request call.
The response includes an answer of success or failure to Login and open a session.
• Successful Response Example
{
"result": "SUCCESS",
"message": null,
"userId": 22358,
"userType": "User",
"userGroupId": 22941,
"userLevel": "User"
}