Visualize JS - Authentication Error on Safari

I created an html page having same code in the introductory video of visualize.js.

It is working fine in latest version of chrome and firefox.

It is giving authentication error in safari and  "Object doesn't support this property or method  visualize.js, line 67 character 13795" in IE8.

Thanks in advance for the cooperation.

muhammad.rehman's picture
Joined: Jun 30 2014 - 4:18am
Last seen: 8 years 1 month ago

Do you see anything else in the javascript console log of IE8?

marianol - 8 years 7 months ago

I'm also having this problem. Visualize.js page correctly displays on IE, Chrome, and Firefox but it does not appear on Safari.

hozawa - 8 years 6 months ago

2 Answers:

I was also facing the same problem. It was not passing the session id in report Execution requests. Now i use 

 

v.login(
 
).done(function(){
v.report({
resource: url,
container: container,
 
success:function(){
 
},error:function(er){
 
}
});
 
 
 
}).fail(function(){
 
 
}
it works fine
asimriaz85's picture
Joined: Oct 15 2014 - 7:14am
Last seen: 8 years 4 months ago

I can't make it work on Safari. Even the plain credentials demo fails on Safari. Looks like it is unable to create a cookie on Safari. Could you fix it somehow? I tried @asimriaz85 approach but fails too...

agustin_2's picture
Joined: Sep 10 2014 - 11:18am
Last seen: 8 years 2 months ago
Feedback