We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8678dbe commit add25ebCopy full SHA for add25eb
storage/README.md
@@ -198,7 +198,7 @@ private function uploadCompleteDataHandler(event:DataEvent):void
198
}
199
```
200
201
-It is required to send the file as a `String` that represents the file bytes and use the `uploadEncoded` method.
+It is required to send the file as a `String` that represents the file bytes and use the `uploadUnencoded` method.
202
203
## Uploading with Auth
204
@@ -211,6 +211,7 @@ private function uploadFile(authToken:String):void
211
212
var fileStream:FileStream = new FileStream();
213
fileStream.open(file, FileMode.READ);
214
+
215
var bytes:ByteArray = new ByteArray();
216
fileStream.readBytes(bytes);
217
fileStream.close();
0 commit comments