Getting Blackbaud Auth Token
I am able to get the token from “https://oauth2.sky.blackbaud.com/token”. But the result of that goes to my success handler for the app.blackbaud.com/oauth/authorize call which is in a different window.
I think this is messing up of being able to set the resulting token into localstorage and be able to use it else where.
Has anyone ran into this issue and know of any way around it? I can see the appropriate values set in the popup window for my domain. But when I go back to the window that is open on my Add-in there is no entry for the blackbaud token.
Any help would be greatly appreciated. Or let me know if you need more info.
Comments
-
Hi @Chad Gray - there are a few sample apps in the documentation that demonstrate how to request authorization in a popup window and appropriately handle the auth callback while storing values in the session. Have you attempted to run through any of the tutorials?
The NodeJS obtain an access token section may be useful, as well as the display authorization buttons section which shows how to invoke the authorization form in a popup window and, after successful authorization, redirect to a route which closes the popup window.
Hope that helps! Let me know if any of those tutorial steps are difficult to follow.
1 -
@Michael Tims
Thanks for the help. I ended up figuring it out.I am using react and since I was opening in a new window the localstorage would not work. So I needed to post a message back to the window.opener with the token information I need.
I did it like this:
window.opener.postMessage({ type: "auth-success", token: result.data.access_token },
"*"
);
1
Categories
- All Categories
- 6 Blackbaud Community Help
- 210 bbcon®
- 1.4K Blackbaud Altru®
- 395 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.5K Blackbaud Financial Edge NXT®
- 649 Blackbaud Grantmaking™
- 567 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 937 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.5K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 247 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 239 The Tap (Just for Fun)
- 33 Blackbaud Community Challenges
- 31 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 785 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
