Cannot post data to Freeboard.io with SIM5320A GSM Board

I have reviewed several projects that use this and other similar SIM boards to send data to Iot sites (thingspeak, freeboard, etc). Everyone else seems to be able to do it except me. I hope its not some small stupid detail but I feel like it is.

Original project link: https://openhomeautomation.net/monitor-data-arduino-fona

I had initially tried using a "Adafruit Feather 32u4 FONA" but that didn't work, supposedly because the 2G network's data band was too weak.

Then I moved to the "Adafruit FONA 3G" with the SIM5320 chipset.

I am using a Hologram SIM Card (as indicated by previous project guidelines) It is active and has sufficient funds for data usage beyond 1MB (1MB is provided free).

I plan to attach a sensor to the board in future, but for now I have the data set to some numbers just to test that it will send.

Code is attached, below is the readout from the serial monitor showing errors at the bottom.

Any help would be greatly appreciated.

FONA reading SMS
Initializing....(May take 3 seconds)
Attempting to open comm with ATs
---> AT
<---
---> AT
<---
---> AT
<---
---> AT
<---
---> AT
<---
---> AT
<---
---> AT
<--- START
---> AT
<--- AT
---> ATE0
<--- ATE0
---> ATE0
<--- OK
---> AT+CVHU=0
<--- OK
---> ATI
<--- Manufacturer: SIMCOM INCORPORATED
Model: SIMCOM_SIM5320A
Revision: SIM5320A_V1.5
IMEI: 014682004525324
+GCAP: +CGSM,+FCLASS,+DS

OK

SMS DONE

+VOICEMAIL: INIT_STATE, 0, 0

PB DONE

---> AT+CPMS="SM","SM","SM"
<--- +CPMS: 0,10,0,10,0,10
FONA is OK
Found FONA 3G (American)
---> AT+GSN
<--- 014682004525324
Module IMEI: 014682004525324
---> AT+NETCLOSE
<--- +IP ERROR: Network is already closed
Failed to turn off
---> AT+CGATT=1
<--- +CME ERROR: no network service
Failed to turn on
---> AT+NETCLOSE
<--- +IP ERROR: Network is already closed
Failed to turn off
---> AT+CGATT=1
<--- OK
---> AT+CGSOCKCONT=1,"IP","hologram"
<--- OK
---> AT+CGAUTH=1,1,"",""
<--- OK
---> AT+CIPMODE=1
<--- OK
---> AT+NETOPEN=,,1
<--- Network opened
Temperature: 90.00
Humidity: 70.00
Request: http://dweet.io/dweet/for/5h43ue?temperature=90.00&humidity=70.0
---> AT+HTTPTERM
<--- ERROR (<-ERRORS HERE)
---> AT+HTTPINIT
<--- ERROR (<-ERRORS HERE)
Failed!
---> AT+HTTPTERM
<--- ERROR (<-ERRORS HERE)

data_webMOD.ino (3.93 KB)