Agregar una cadena con comillas dobles a un archivo en vba

Estoy obteniendo datos de una API AQI de China, estoy poniendo algunos de los datos en una base de datos del servidor SQL y eso funciona de maravilla. También decidí agregar todo lo que devuelve la API a un archivo JSON para poder acceder a él más tarde.

Cada vez que trato de agregar la cadena devuelta por la API en el archivo recibo un error "Llamada o argumento de procedimiento no válido"

Esto es lo que he hecho hasta ahora:

Public Sub AddToJson(Jsonline As String)
     Dim strfile As String
     Dim fso As New FileSystemObject
     Dim fsoStream As TextStream
     Dim iexist As String
     Dim stradd As String

     strfile = "c:\JSON_AQI.json"
     stradd = Replace(Jsonline, Chr(34), Chr(34) & Chr(34) & Chr(34) & Chr(34))
     Debug.Print stradd
     iexist = Dir(strfile)

     'check if the file exists
     If iexist = "" Then
         'if it exists, open it and add the line
         Set fsoStream = fso.CreateTextFile(strfile)
     Else
         'if it doesn't exist, create it and add the line
         Set fsoStream = fso.OpenTextFile(strfile, ForAppending)
     End If

     fsoStream.WriteLine stradd

     fsoStream.Close

     Set fsoStream = Nothing
     Set fso = Nothing


 End Sub

Esto es lo que paso como el parámetro Jsonline:

 {"status":"ok","data":{"aqi":164,"idx":7130,"attributions":[{"name":"Hunan Environmental Protection Agency (????????)"},{"name":"China National Urban air quality real-time publishing platform (??????????????)"}],"city":{"geo":[33.8561,115.7831],"name":"sanguó lanshèng gong, Bozhou"},"dominentpol":"pm25","iaqi":{"co":{"v":14.8},"no2":{"v":24.7},"o3":{"v":45.9},"pm10":{"v":97},"pm25":{"v":164},"so2":{"v":5.1}},"time":{"s":"2017-04-06 04:00:00","tz":"+08:00","v":1491451200}}}

como puede ver, intenté agregar comillas dobles adicionales a la cadena en vano, ¿hay algo más que me falte?

Respuestas a la pregunta(1)

Su respuesta a la pregunta