makeWebRequest working in sim, failing on physical device. (error: -400)

Hey guys,

I've been working on a watch app that gets data from the web.  It works fine on the simulator, but on the physical device it fails, error -400.  Any ideas of what I'm doing wrong?

var options =
        {
            :method => Communications.HTTP_REQUEST_METHOD_GET,
            :responseType => Communications.HTTP_RESPONSE_CONTENT_TYPE_TEXT_PLAIN
        };
        
    Communications.makeWebRequest("">https://labs.bible.org/api/", {"passage"=>"John%203:16"}, options, method(:onReceive));

Thanks,

SirLanceLot