Excel VBA で XMLHTTPRequest の応答である JSON オブジェクトを処理する必要があります。以下のコードを書きましたが、うまくいきません。
Dim sc As Object
Set sc = CreateObject("ScriptControl")
sc.Language = "JScript"
Dim strURL As String: strURL = "blah blah"
Dim strRequest
Dim XMLhttp: Set XMLhttp = CreateObject("msxml2.xmlhttp")
Dim response As String
XMLhttp.Open "POST", strURL, False
XMLhttp.setrequestheader "Content-Type", "application/x-www-form-urlencoded"
XMLhttp.send strRequest
response = XMLhttp.responseText
sc.Eval ("JSON.parse('" + response + "')")
実行時エラー '429' ActiveX component can't create object in the line というエラーが表示されますSet sc = CreateObject("ScriptControl")
JSON オブジェクトを解析したら、JSON オブジェクトの値にどのようにアクセスしますか?
PS My JSON オブジェクトのサンプル:{"Success":true,"Message":"Blah blah"}