Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setting up AppBridge #1037

Open
Goldlion-star opened this issue Aug 30, 2019 · 1 comment
Open

Setting up AppBridge #1037

Goldlion-star opened this issue Aug 30, 2019 · 1 comment
Labels
requires discussion This issues needs to be reviewed before development can start

Comments

@Goldlion-star
Copy link

I am setting up AppBridge in my app. But it is not receiving a response when calling the register function of AppBridge. In other words, windowName is null.

register(): void {
this.registrationAttempts++;
this.bridge.register(this.appBridgeConfig).then((windowName: string) => {
// Custom actions open inside of a new bowling alley tab, and we must register for the new window object
// Keep retrying to register until we receive the full window registration. Otherwise, ignore it.
this.registered = !this.requiresWindowObject || windowName != null;
if (this.registered) {
this.onRegistered.emit(true);
} else {
this.registerRetry();
}
}, (err: any) => {
this.registerRetry(err);
});
}

Please help me with why it happens such an issue.

@michael-amaya-bh
Copy link

Hello, are you still experiencing this issue?

@michael-amaya-bh michael-amaya-bh added requires discussion This issues needs to be reviewed before development can start and removed question labels Feb 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
requires discussion This issues needs to be reviewed before development can start
Projects
None yet
Development

No branches or pull requests

2 participants