Yes, it does. i wanna know if my code is correct or i am missing something because it has yellow underline in my code. the error is posted in #3, a screenshot of the error.
you are not using PUT correctly. what you probably mean to use is POST. as far as the "error" is concerned, it's a "warning". it says warning. as far as the "object" mentioned is concerned, there is no way to know what it refers to, given what you've shared. sorry.
you are not using PUT correctly. what you probably mean to use is POST. as far as the "error" is concerned, it's a "warning". it says warning. as far as the "object" mentioned is concerned, there is no way to know what it refers to, given what you've shared. sorry.
Dim m As Map
m.Initialize
m.Put("old_password", EditText1.Text)
m.Put("password", EditText2.Text)
m.Put("password_confirmation", EditText3.Text)
Dim jSONGen As JSONGenerator
jSONGen.Initialize(m)
Dim strJSONGen As String
strJSONGen = jSONGen.ToString