The current dilemma:
The online community I am developing for consists of multiple sub-communities with their own unique subdomains. While normally it is possible to configure a web server to allow communication between these subdomains, the community provider we are working with seems incapable of implementing this.
The innovative approach
In order to circumvent CORS errors, we have resorted to utilizing YQL for handling GET requests. This workaround has been approved by the community provider, who must review and authorize all scripts submitted by developers like myself. Thus far, this solution has proven to be effective.
The unresolved query
Although I have successfully implemented GET requests through YQL, my struggle lies in figuring out if it is also feasible to send POST data to another subdomain using the same method. If indeed possible, I am curious about the steps involved in achieving this functionality.