Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by stringa · Aug 17, 2010 at 08:38 PM · webplayerwwwyield

WebPlayer and WWW, stalls forever on get....

Hello.

I have a bit of code. I'm new to unity, so I'm not sure where i'm going wrong. The last line of code is never run because it keeps getting stuck on the WWW get request (yeild). Am I doing something wrong with executing this in the web player?

Thanks, stringa

function Start() {

anotherFunction();

ExternalEval("alert('End of Start')");

}

function anotherFunction() {

// Wait until cookies are loaded while(!CookieCutter.loaded) yield WaitForSeconds(5.1);

var cookieValue : String;

// Read testCookie cookieValue=CookieCutter.GetCookie("fbs_appid");

var hashTable = new Hashtable();

// SetDefault if(!String.IsNullOrEmpty(cookieValue)) { cookieValue = cookieValue.Trim("\""[0]);

 ExternalEval("alert('trimmed : " + cookieValue + "')");


 var nameValues = cookieValue.Split("&"[0]);

 for(var element in nameValues)
 {
     var splitElement = element.Split(["="[0]], 2);

     hashTable[splitElement[0]] = splitElement[1];    
 }

 ExternalEval("alert('access Token : " + hashTable["access_token"] + "')");

 // --- Now lets do a web call

 accessToken();

} else { // Else modify value cookieValue = "! Cookie";

 accessToken();

}

// Display the cookie value guiText.text=cookieValue;

// And save it in the browser //CookieCutter.SetCookie("testCookie",cookieValue,100);

}

function accessToken() {

ExternalEval("alert('starting to grab fb info')");

 var url = "https://www.google.com";
 //var url = "https://graph.facebook.com/me/likes?access_token=" + hashTable["access_token"];
 var www: WWW = new WWW(url);

 ExternalEval("alert('wait for web get')");

 yield www;

 ExternalEval("alert(' : " + www.data + "')");

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

Problems with webplayer in chrome on OSX 2 Answers

WWW requests are exponentially slow on large web pages (xml) 1 Answer

WebPlayer WWW Authorization always prompts for credentials 0 Answers

Yield And Return 2 Answers

Unity5 WebPlayer WWWForm working only in Google Chrome 3 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges