При попытки сделать запрос такого вида https://api.vk.com/method/photos.saveWallPhoto?photo={0}&server={1}&hash={2}&access_token={3} (включая параметры)
На андроиде все проходит как по маслу, а ios не дает сделать запрос из-за ошибки unsupported url
Код
IEnumerator WWWSaveWallPhoto (string photo, string server, string hash) {
string method = string.Format (SAVE_WALL_PHOTO, photo, server, hash, accessToken);
Debug.Log (string.Format ("WWWSaveWallPhoto (photo: {0}, server: {1}, hash: {2}, method: {3}", photo, server, hash, WWW.EscapeURL (method)));
byte[] postData = Encoding.UTF8.GetBytes (WWW.EscapeURL (method));
WWW www = new WWW (WWW.EscapeURL (method), postData);
yield return www;
while (www.isDone == false)
yield return null;
Debug.Log (string.Format ("WWWSaveWallPhoto (text: {0}, error: {1}", www.text, www.error));
if (saveWallPhoto != null) {
saveWallPhoto.Invoke (www.text);
saveWallPhoto = null;
}
}