1
でダウンロードして、iOSとAndroid with Unityの両方のアプリを作成します。 I connect to an https address
- - I did set the Allow Arbitrary Loads to YES
Unity iOS、https
しかし、それは働いていない
:私は今のiOS問題にこだわって
:
You are using download over http. Currently unity adds `NSAllowsArbitraryLoads` to `Info.plist` to simplify transition, but it will be removed soon. Please consider updating to https.
サポートされていないURL
実際の問題があります。
string GET = "mail="+mail+"&nome="+nome+"&cognome="+cognome;
// get parameters
WWW response = new WWW (SERVER+"adduser/?"+GET);
// calling page, address is like 'https://website.com/'
while (!response.isDone && response.error != "") {
yield return null;
}
if (response.error != "") {
print (response.error);
return false;
}
明らかに、これはIEnumerator
機能であり、それは常に前のエラーを返します。
は、ここに私のコードです。
ありがとうございます! SMHそれは状況を解決! – ZioCain
@ZioCainなぜこの問題を解決したので回答を受け入れなかったのですか?これで問題が解決したら、それを答えとして受け入れるべきです。それは感謝の気持ちでいっぱいです。なぜそれをしたのか説明すればいいでしょう。 – Programmer
申し訳ありませんが、私は答えを受け入れたと思ったのですが、なぜ私が受け入れられなかったのか分かりません。私は実際にSOの仕組みを理解しようとしています。 – ZioCain