Attachment Download Issues?
From the API, I can pull the attachment info (including url). If I want store and later access that file (i.e. download it) later from a different app, what is the process? I won't be in a authenticated session, but have the link. Any suggestions?
Or, just any programmatic way to download attachment even calling the API directly (via authenticated request).
Comments
-
@Bob Rowe, the URL that comes back in the response has all the authentication you need burned into the querystring on the URL. The access supplied in the URL is only good for one hour for security reasons. If you look closely at the URL you can see the Expiration datetime.
Here is some example code of how you could download an Attachment with the supplied URL and FileName using c#.
var fileURL = "https://url_supplied_from_original_response";
var localFile = @c:\\folder_for_files\\filename_from_original_response;
using (var client = new HttpClient())
{
using (HttpResponseMessage response = await client.GetAsync(fileURL))
using (Stream streamToReadFrom = await response.Content.ReadAsStreamAsync())
using (var fs = new FileStream(localFile, FileMode.Create, FileAccess.Write, FileShare.None))
{
await streamToReadFrom.CopyToAsync(fs);
}
}Let me know if this helps of if you have any further questions.
0 -
@Michael Reece Thanks - that did the trick! I hadn't inspected the URL parameters in detail.
1
Categories
- All Categories
- 6 Blackbaud Community Help
- 212 bbcon®
- 1.4K Blackbaud Altru®
- 399 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®
- 654 Blackbaud Grantmaking™
- 571 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 939 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.6K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 248 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 240 Member Lounge (Just for Fun)
- 34 Blackbaud Community Challenges
- 34 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) 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
- 789 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)