Introduction
- Get a developer key and private key from Photobucket.com
- Put the developer key and private key into the App.xaml
Details
Add your content here. Format your content with: 1. Starting at the Photobucket Developer site, get a developer key and private key 1. In the Silverlight application that uses the Photobucket API (not the PhotobucketAPI library) open the App.xaml file and add the sys namespace to the
<Applcation>
tag: xmlns:sys="clr-namespace:System;assembly=mscorlib"
1. In the tag add two sys:String resources, one for the developer key and one for the private key with the keys obtained from Photobucket.com:
<sys:String x:Key="DeveloperKey">[your developer key]</sys:String>
<sys:String x:Key="PrivateKey">[your private key]</sys:String>