How to call AJAX API function from Windows App?
        Posted  
        
            by 
                stiopa
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by stiopa
        
        
        
        Published on 2011-06-24T15:01:33Z
        Indexed on 
            2011/06/24
            16:22 UTC
        
        
        Read the original article
        Hit count: 219
        
JavaScript
|AJAX
Some company is providing me with web-based API for using their services. I have no problem calling this API functions from within web brower:
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<script type="text/javascript" 
src="http://someaddress.com?&key=somekey"></script>
<script type="text/javascript">
var object = new SomeObject();
object.SomeFunction();
</script>
</head> 
I am interested in return value of SomeFunction(). How would I get this return value from windows application?
© Stack Overflow or respective owner