Migration of open graphical actions of FB, objects and aggregates from a developer application to production

An open facebook chart was hacked to publish items in a user stream, currently I created all actions / objects / aggregations using a test application. However i want

a) Transfer this to our intermediate server to check b) After a) the migration to the production server is completed

Given that each FB application has its own domain (and my / prod stage has its own domains) - I have an application for each environment. However, I would prefer not to recreate actions / objects / aggregates on both the intermediate and advanced versions of the applications. Does anyone know a way to achieve this?

+3
facebook facebook-graph-api facebook-opengraph
source share
1 answer

Can you create subdomains of your primary domain? If so, applications will work through several subdomains (this can be configured in the developerโ€™s settings panel ). In addition, you can perform the main stage of authentication and permissions in your production domain, and then redirect to your intermediate domain using the same access tokens (most API calls are not limited to the default application domain).

0
source share

All Articles