【Unity】UnityWebRequest time out 0 bytes received问题

关键词:UnityWebRequest、Http协议、Get请求、0 bytes received 

using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;public class MyWebRequest : MonoBehaviour
{public class CustomWebRequestObject{public Coroutine coroutine;public UnityWebRequest webRequest;}public class CustomWebRequestGetData{public int id;public string url;}public class CustomWebRequestPostData{public int id;public string url;public Dictionary<string, string> data;}public const int TIME_OUT = 10;                     //超时时间private static int ID = 0;                          //唯一ID递增public Action<int, string> OnResponse;              //Web成功响应回调private Dictionary<int, CustomWebRequestObject> m_CustomWebRequestObjDict; //缓存协程字典private Queue<CustomWebRequestGetData> m_GetQueue;private Queue<CustomWebRequestPostData> m_PostQueue;private int m_ActivingRequestCnt;public void Awake(){m_CustomWebRequestObjDict = new Dictionary<int, CustomWebRequestObject>();m_GetQueue = new Queue<CustomWebRequestGetData>();m_PostQueue = new Queue<CustomWebRequestPostData>();m_ActivingRequestCnt = 0;}/// <summary>/// 返回登录调用/// </summary>public void OnBack2Login(){if (m_CustomWebRequestObjDict.Count > 0){foreach (var v in m_CustomWebRequestObjDict.Values){v.webRequest?.Abort();StopCoroutine(v.coroutine);}m_CustomWebRequestObjDict.Clear();}m_GetQueue.Clear();m_PostQueue.Clear();m_ActivingRequestCnt = 0;}#region Get/// <summary>/// Get方式请求/// </summary>/// <param name="url"></param>/// <returns></returns>public int Request(string url){ID++;int id = ID;Debug.Log($"[CustomWebRequest] web request [Get] *Enqueue* id:{ID}, url:{url}");m_GetQueue.Enqueue(new CustomWebRequestGetData(){id = id,url = url});InternalGet();return id;}private void InternalGet(){if (m_GetQueue.Count <= 0 || m_ActivingRequestCnt > 0){return;}m_ActivingRequestCnt++;CustomWebRequestGetData customWebRequestData = m_GetQueue.Dequeue();int id = customWebRequestData.id;string url = customWebRequestData.url;Debug.Log($"[CustomWebRequest] web request [Get] id:{ID}, url:{url}");//UnityWebRequest webRequest = UnityWebRequest.Get(url);UnityWebRequest webRequest = new UnityWebRequest(url);DownloadHandlerBuffer Download = new DownloadHandlerBuffer();webRequest.downloadHandler = Download;webRequest.method = UnityWebRequest.kHttpVerbGET;webRequest.chunkedTransfer = false;webRequest.useHttpContinue = false;webRequest.redirectLimit = 0;webRequest.timeout = TIME_OUT;Coroutine coroutine = StartCoroutine(EnumeratorGet(id, webRequest));m_CustomWebRequestObjDict.Add(id, new CustomWebRequestObject(){coroutine = coroutine,webRequest = webRequest});}/// <summary>/// Get方式协程处理/// </summary>/// <param name="id">唯一ID</param>/// <param name="url">URL</param>/// <returns></returns>IEnumerator EnumeratorGet(int id, UnityWebRequest webRequest){yield return webRequest.SendWebRequest();if (webRequest.isHttpError || webRequest.isNetworkError){Debug.LogError(string.Format("[CustomWebRequest] web request [Get] fail, id:{0},isHttpError:{1},isNetworkError:{2},TIME_OUT:{3},error:{4}",id, webRequest.isHttpError, webRequest.isNetworkError, TIME_OUT, webRequest.error));}else{string data = webRequest.downloadHandler.text;Debug.Log("[CustomWebRequest] web request [Get] success, id:" + id + ",data:" + data);OnResponse?.Invoke(id, data);}if (webRequest.isDone){string data = webRequest.downloadHandler != null ? webRequest.downloadHandler.text : "";Debug.LogWarning("[CustomWebRequest] web request [Get] response, id:" + id + ",data:" + data);}if (m_CustomWebRequestObjDict.ContainsKey(id)){m_CustomWebRequestObjDict.Remove(id);}m_ActivingRequestCnt--;TryContinueRequest();}#endregion#region Postpublic int Post(string url, string dataJson){ID++;int id = ID;Debug.Log($"[CustomWebRequest] web request [Post] *Enqueue* id:{ID}, dataJson:{dataJson}");m_PostQueue.Enqueue(new CustomWebRequestPostData(){id = id,url = url,data = JsonConvert.DeserializeObject<Dictionary<string, string>>(dataJson)});InternalPost();return id;}private void InternalPost(){if (m_PostQueue.Count <= 0 || m_ActivingRequestCnt > 0){return;}m_ActivingRequestCnt++;CustomWebRequestPostData customWebRequestPostData = m_PostQueue.Dequeue();int id = customWebRequestPostData.id;string url = customWebRequestPostData.url;Dictionary<string, string> data = customWebRequestPostData.data;Debug.Log($"[CustomWebRequest] web request [Post] id:{ID}, data:{JsonConvert.SerializeObject(data)}");WWWForm form = new WWWForm();foreach (var v in data){form.AddField(v.Key, v.Value);}UnityWebRequest webRequest = UnityWebRequest.Post(url, form);Coroutine coroutine = StartCoroutine(EnumeratorPost(id, webRequest));m_CustomWebRequestObjDict.Add(id, new CustomWebRequestObject(){coroutine = coroutine,webRequest = webRequest});}IEnumerator EnumeratorPost(int id, UnityWebRequest webRequest){yield return webRequest.SendWebRequest();if (webRequest.isHttpError || webRequest.isNetworkError){Debug.LogError(string.Format("[CustomWebRequest] web request [Post] fail, id:{0},isHttpError:{1},isNetworkError:{2},TIME_OUT:{3},error:{4}",id, webRequest.isHttpError, webRequest.isNetworkError, TIME_OUT, webRequest.error));}else{string data = webRequest.downloadHandler.text;Debug.Log("[CustomWebRequest] web request [Post] success, id:" + id + ",data:" + data);OnResponse?.Invoke(id, data);}if (webRequest.isDone){string data = webRequest.downloadHandler != null ? webRequest.downloadHandler.text : "";Debug.LogWarning("[CustomWebRequest] web request [Post] response, id:" + id + ",data:" + data);}if (m_CustomWebRequestObjDict.ContainsKey(id)){m_CustomWebRequestObjDict.Remove(id);}m_ActivingRequestCnt--;TryContinueRequest();}#endregionprivate void TryContinueRequest(){InternalGet();InternalPost();}
}

坑:Get方式请求时,参数不可以过长,过长可能会导致无法正常接收到响应,报错如下:

Curl error 28: 0peration timed out after 10000 milliseconds with 0 bytes received 

网上方案(均无法解决)
request.useHttpContinue = false
自定义downloadhandler
System.Net.ServicePointManager.DefaultConnectionLimit=50(默认为2)

最终方案:可更改为Post方式请求解决。 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/722787.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2024关于idea激活码报This license xxxx has been suspended

HOSTS文件中增加 0.0.0.0 www.jetbrains.com 0.0.0.0 account.jetbrains.com 然后

代码随想录 二叉树第五周

目录 235.二叉搜索树的最近公共祖先 701.二叉搜索树的插入操作 450.删除二叉搜索树中的节点 669.修建二叉搜索树 108.将有序数组转换为二叉搜索树 538.把二叉搜索树转换为累加树 235.二叉搜索树的最近公共祖先 235. 二叉搜索树的最近公共祖先 中等 给定一个二叉搜索树,…

浅谈MySQL 索引

MySQL 索引类型 1&#xff1a;主键索引 索引列中的值必须是唯一的&#xff0c;不允许有空值。 2&#xff1a;普通索引 MySQL中基本索引类型&#xff0c;没有什么限制&#xff0c;允许在定义索引的列中插入重复值和空值。 3&#xff1a;唯一索引 索引列中的值必须是唯一的&…

App前端开发跨平台框架比较:React Native、Flutter、Xamarin等

引言 移动应用开发领域的跨平台框架正在不断演进&#xff0c;为开发者提供更多选择。在本文中&#xff0c;我们将比较几个流行的跨平台框架&#xff1a;React Native、Flutter和Xamarin等。讨论它们的优缺点、适用场景以及开发体验。 第一部分 React Native: 优缺点、适用场景…

Spring MVC BeanNameUrlHandlerMapping原理解析

在Spring MVC框架中&#xff0c;路由机制是实现请求到处理器映射的核心。其中&#xff0c;BeanNameUrlHandlerMapping是Spring MVC提供的一种基于bean名称的URL映射策略。本文将详细解析BeanNameUrlHandlerMapping的工作原理、特点、使用场景以及配置和使用方法。 一、BeanNam…

uniapp实现单选框卡片选择器,支持微信小程序、H5等多端

采用uniapp-vue3实现的一款单选框卡片选择器&#xff0c;纯CSS实现样式和交互&#xff0c;提供丝滑的动画选中效果&#xff0c;支持不同主题配置&#xff0c;适配多端 可到插件市场下载尝试&#xff1a; https://ext.dcloud.net.cn/plugin?id16901 使用示例 示例代码 <te…

Linux操作系统项目上传Github代码仓库指南

文章目录 1 创建SSH key2.本地git的用户名和邮箱设置3.测试连接4.创建仓库5.终端项目上传 1 创建SSH key 1.登录github官网,点击个人头像,点击Settings,然后点击SSH and GPG keys,再点击New SSH key。 Title 可以随便取&#xff0c;但是 key 需要通过终端生成。 Linux终端执行…

运用Tensorflow进行目标检测

对象检测是一种计算机视觉技术&#xff0c;它使软件系统能够从给定的图像或视频中检测、定位并跟踪物体。对象检测的一个特殊属性是它能识别对象的类别&#xff08;如人、桌子、椅子等&#xff09;并在给定图像中指出其具体位置坐标。这个位置通常通过在物体周围绘制一个边界框…

探究java反射取值与方法取值性能对比

探究java反射取值与方法取值性能对比 由于我开发框架时&#xff0c;经常需要对象取值。常用的取值方式有&#xff1a; 反射取值方法调用取值 环境 同一台电脑&#xff1a; jdk 21.0.2 idea 2023.3.3 1. 测试代码&#xff08;常用&#xff09; 1.1 反射取值 public stat…

u-boot增加自定义命令

0、说明 本文基于U-Boot 2022.01-v2.07版本进行分析。 1、u-boot编译流程简要分析 2、u-boot启动流程简要分析 3、u-boot增加自定义命令 3.1、u-boot命令行实现简要分析 1&#xff09;cli_init命令行初始化 cli_init定义在common\cli.c中&#xff1a;void cli_init(void) {…

C++基础入门 --- 练习案例【1-10】

文章目录 C基础入门 --- 练习案例1.三只小猪称体重2.猜数字3.水仙花数4.敲桌子5.乘法口诀表6.五只小猪称体重7.数组元素逆置8.考试成绩统计9.冒泡排序10.结构体数组排序 C基础入门 — 练习案例 1.三只小猪称体重 说明&#xff1a;有三只小猪分别为A、B、C,分别输入三只小猪的…

【Web】浅浅地聊JDBC java.sql.Driver的SPI后门

目录 SPI定义 SPI核心方法和类 最简单的SPIdemo演示 回顾JCBC基本流程 为什么JDBC要有SPI JDBC java.sql.Driver后门利用与验证 SPI定义 SPI&#xff1a; Service Provider Interface 官方定义&#xff1a; 直译过来是服务提供者接口&#xff0c;学名为服务发现机制 它通…

acme.sh申请ssl免费证书

参考 https://blog.csdn.net/fyhju1/article/details/120452141 获取域名服务商AccessKey ID及AccessKey Secret https://help.aliyun.com/zh/ram/user-guide/create-an-accesskey-pair 安装ACME curl https://get.acme.sh | sh source ~/.bashrc如果使用root用户进行安装&…

如何在windows上像linux的ssh一样远程访问其它windows

主要分成两部分&#xff1a; 1. 如何远程执行指令 使用psexec&#xff0c;示例如下&#xff1a; PsExec64.exe \\远程计算机ip -u 用户名 -p 密码 -i cmd.exe 这样你就能连接到远程计算机上执行命令了&#xff0c;效果如下 2. 如何远程拷贝文件 分成两步&#xff1a; net…

【语法基础练习】1.变量、输入输出、表达式与顺序语句

&#x1f338;博主主页&#xff1a;釉色清风&#x1f338;文章专栏&#xff1a;算法练习&#x1f338;今日语录&#xff1a;You don’t know until you try. 文章简介&#xff1a;下面的题目是AcWing网站语法基础练习篇的第一小节&#xff0c;内容基础&#xff0c;难度&#xf…

计算机组成原理-累加器实验——沐雨先生

一、实验目的 1.理解累加器的概念和作用 2.连接运算器、存储器和累加器&#xff0c;熟悉计算机的数据通路 3.掌握使用微命令执行各种操作的方法。 二、实验要求 1.做好实验预习&#xff0c;读懂实验电路图&#xff0c;熟悉实验元器件的功能特性和使用方法。在实验之前设计…

list链表的创建,排序,插入, test ok

1. 链表的建立&#xff0c;打印 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <stack> #include <iostream> #include <string.h> #include <string>using namespace std;struct node {int data;s…

Vue项目性能分析工具: vue-cli-plugin-webpack-bundle-analyzer

在优化项目的时候&#xff0c;每次打包后只知道包文件大&#xff0c;却不知道那个文件大&#xff0c;那个文件还有优化的空间&#xff0c;所以&#xff0c;推荐一款工具&#xff0c;只要在项目中安装配置一下&#xff0c;便可以一目了然的呈现出打包后资源所占的比例&#xff0…

【贪心算法】摆动序列

如果连续数字之间的差严格地在正数和负数之间交替&#xff0c;则数字序列称为 摆动序列 。第一个差&#xff08;如果存在的话&#xff09;可能是正数或负数。仅有一个元素或者含两个不等元素的序列也视作摆动序列。 例如&#xff0c; [1, 7, 4, 9, 2, 5] 是一个 摆动序列 &…

【vue项目适配可借助于插件lib-flexible 和postcss-px2rem】

前言&#xff1a;vue项目适配可借助于插件lib-flexible 和postcss-px2rem。 lib-flexible插件的作用&#xff1a;根据屏幕尺寸不同设置html根标签的字体大小&#xff0c;1rem即等于根标签的字体大小。 postcss-px2rem插件的作用&#xff1a;将px转为rem,如此以来我们可以在开…