ファイルをサーバーにアップロードするアプリを開発しました。携帯電話会社のデータを使用してアップロードするファイルのサイズに制限はありますか? Wifiには制限がないと思いますが、セルラープロバイダーのデータはどうですか、OSはデータを使用するサイズを制限しますか? もしそうなら、サイズ制限は何ですか?
1 に答える
Your app will have no problem continuing to spray HTTP Post requests all over the internets as often as you tell it to, or whatever other exotic web magic you're invoking.
If you are referring to particular upload limits of individual cell phone data plans, then I think you'll have to read the fine print of every different contract with every different mobile provider to get an answer, and that answer will be "it varies"
Of course, if you are considering sending particularly large data-sets back to a server, you're probably going to consider breaking it into small pieces and handling dropped packets gracefully anyway, so I'm assuming you're not asking "what's the biggest file I can push through completely intact".