Hi Sean,
Just looking through the response data I receive when I drop a player, which seems different than I remember it being. For starters, I got a 201 Created response code, but I swore I got an OK before, is that correct?
Second, and main issue, it seems the response also sends back the league password in plaintext within the response:
CODE
<?xml version="1.0" encoding="UTF-8"?>
<fantasy_content xml:lang="en-US" yahoo:uri="http://fantasysports.yahooapis.com/fantasy/v2/league/{key}/transactions" xmlns:yahoo="http://www.yahooapis.com/v1/base.rng" time="10.579109191895ms" copyright="Data provided by Yahoo! and STATS, LLC" xmlns="http://fantasysports.yahooapis.com/fantasy/v2/base.rng">
<league>
<league_key>{key}</league_key>
<league_id>{id}</league_id>
<name>League</name>
<url>{url}</url>
<password>{MY PASSWORD HERE}</password>
<draft_status>postdraft</draft_status>
<num_teams>8</num_teams>
<edit_key>2011-07-21</edit_key>
<weekly_deadline/>
<league_update_timestamp>1311148707</league_update_timestamp>
<scoring_type>head</scoring_type>
<current_week>16</current_week>
<start_week>2</start_week>
<end_week>25</end_week>
<transactions count="1">
<transaction>
<transaction_key>{key}</transaction_key>
<transaction_id>11</transaction_id>
<type>drop</type>
<status>successful</status>
<timestamp>1311210095</timestamp>
<players count="1">
<player>
<player_key>253.p.7669</player_key>
<player_id>7669</player_id>
<name>
<full>Josh Johnson</full>
<first>Josh</first>
<last>Johnson</last>
<ascii_first>Josh</ascii_first>
<ascii_last>Johnson</ascii_last>
</name>
<editorial_team_abbr>Fla</editorial_team_abbr>
<display_position>SP</display_position>
<transaction_data>
<type>drop</type>
<source_type>team</source_type>
<source_team_key>{key}</source_team_key>
<destination_type>waivers</destination_type>
</transaction_data>
</player>
</players>
</transaction>
</transactions>
</league>
</fantasy_content>
I'm not sure if this was intentional or not, but some could construe it as a possible security issue if passwords are sent in plaintext within the XML.