0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AzureのApp Service(Mobile App)でファイルをアップロード時に'request entity too large'が発生

Last updated at Posted at 2016-12-02

##症状##

画像ファイルなど大きいファイルをアップロードしようとした際にタブレットアプリにて以下のエラーが発生する。

'request entity too large'

##前提##

Microsoft Azure の App Service (Mobile App)を新規で作成し利用。(以前のモバイルサービスから移行されたApp Serviceはこの症状は出ていません。)
ユニバーサルアプリ(Visual Studio 2015)にて開発。

##解決策##

App Service Editor にて編集。app.js内に以下の内容を追加します。

app.js
var bodyParser = require('body-parser');
app.use(bodyParser.json({limit: '1mb'}));
app.use(bodyParser.urlencoded({limit: '1mb', extended: true})); 

1mbは適切なサイズに調整お願いします。

1.gif

##参考##

※本件はマイクロソフトの公式での問い合わせは行っていませんのでご注意ください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?