<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Search query when server connection is not established yet returns &amp;quot;Please try another sear in Android</title>
    <link>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/1006144#M37909</link>
    <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class="hps"&gt;Hi, this&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is going to have&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;a problem&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;with the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;search&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;query&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;When&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the server&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;connection&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is not&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;yet&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Established&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;returns&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;"Please&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;try another&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;search&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Windows Vista SP2&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/99177"&gt;@Goodman&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I spoke with the Android team. Although it doesn't meet the criteria for an urgent resolution, it's a good find, a great bug report, and we definitely will look into it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the report!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jan 2015 00:51:58 GMT</pubDate>
    <dc:creator>visockasaidas</dc:creator>
    <dc:date>2015-01-01T00:51:58Z</dc:date>
    <item>
      <title>Search query when server connection is not established yet returns "Please try another search"</title>
      <link>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/496894#M19210</link>
      <description>&lt;P&gt;&lt;U&gt;Description&lt;/U&gt;&lt;BR /&gt;When the Spotify app is issued a search query while the app is still attempting to connect to the server, the app does not wait for connection and simply returns "No Search Results: Please try another search." Sometimes this search result will remain for that same query, even after connection has been established.&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;What are the steps you took to get to the error/issue?&lt;/U&gt;&lt;BR /&gt;Two methods:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;1. (Hard to repro) Issue a search query through the app when phone is switching internet connection modes (e.x. WiFi to mobile data or vice versa) or when mobile data signal is weak.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Custom app. The app issues a search command to the Spotify app using one of two invocations:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;String uri = "spotify:search:" + &amp;lt;search term string here&amp;gt;; 
Intent launcher = new Intent( Intent.ACTION_VIEW, Uri.parse(uri) );
launcher.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(launcher);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;final Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setAction(MediaStore.INTENT_ACTION_MEDIA_PLAY_FROM_SEARCH);
intent.setComponent(new ComponentName("com.spotify.mobile.android.ui", "com.spotify.mobile.android.ui.Launcher"));
intent.putExtra(SearchManager.QUERY, &amp;lt;search term string here&amp;gt;);
startActivity(intent);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My app is run when the Spotify app is not running, thereby starting the com.spotify.mobile.android.ui activity and issuing a search command within that. Since the spotify app/service are still initializing, the search query returns the described "no search results" page.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;U&gt;What I expected to happen&lt;/U&gt;&lt;BR /&gt;When in online mode, the search query should show a loading page/spinner until a connection with the server has been established, and only then will it return search results.&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Did you restart your device when troubleshooting in section B?&lt;/U&gt;&lt;BR /&gt;Yes&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Did you read the connection troubleshooting tips?&lt;/U&gt;&lt;BR /&gt;Yes&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Your device&lt;/U&gt;&lt;BR /&gt;Samsung Galaxy S 3&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Device’s Operating System&lt;/U&gt;&lt;BR /&gt;4.1.2 Jelly Bean&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;What type of account do you have?&lt;/U&gt;&lt;BR /&gt;Premium&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Space left on your device&lt;/U&gt;&lt;BR /&gt;7 GB&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Space left on your SD card (if applicable)&lt;/U&gt;&lt;BR /&gt;6.58 GB&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Space left on your External SD card (if applicable)&lt;/U&gt;&lt;BR /&gt;N/A&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Is your device rooted?&lt;/U&gt;&lt;BR /&gt;No&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Are you using a custom ROM, if so which one, exactly?&lt;/U&gt;&lt;BR /&gt;No&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Did you set your external SD card as storage location?&lt;/U&gt;&lt;BR /&gt;No&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Did you manually install an older version before installing the latest version from the Play Store?&lt;/U&gt;&lt;BR /&gt;No&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Do you have the same issue when switching between WiFi/Mobile Data (If applicable)?&lt;/U&gt;&lt;BR /&gt;I Guess? That's kinda what causes the problem&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;If you said "No", when does the issue not occur?&lt;/U&gt;&lt;BR /&gt;N/A I guess&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;My mobile Spotify version&lt;/U&gt;&lt;BR /&gt;0.6.6.270&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;My desktop Spotify version (if applicable)&lt;/U&gt;&lt;BR /&gt;N/A&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;My mobile provider and country&lt;/U&gt;&lt;BR /&gt;Verizon, USA&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;My username&lt;/U&gt;&lt;BR /&gt;jamesr66a&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Do you have a Spotify (non-Facebook) login?&lt;/U&gt;&lt;BR /&gt;yes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Are you logging in with Facebook or with your Spotify login details?&lt;/U&gt;&lt;BR /&gt;Tried with both&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Do you have any screenshots you can attach to more clearly explain your issue?&lt;/U&gt;&lt;BR /&gt;I don't think screenshots would really help. Will post on request&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2013 04:52:13 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/496894#M19210</guid>
      <dc:creator>jamesr66a</dc:creator>
      <dc:date>2013-08-09T04:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search query when server connection is not established yet returns "Please try another sear</title>
      <link>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/496944#M19212</link>
      <description>&lt;P&gt;Hi, and welcome to the community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll escalate this to the staff so see if anyone else with an android phone can reproduce it (as unfortunately I'm an iOS user, sorry!).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anthony &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2013 07:51:53 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/496944#M19212</guid>
      <dc:creator>Taylor</dc:creator>
      <dc:date>2013-08-09T07:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Search query when server connection is not established yet returns "Please try another sear</title>
      <link>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/504674#M19490</link>
      <description>&lt;P&gt;I spoke with the Android team. Although it doesn't meet the criteria for an urgent resolution, it's a good find, a great bug report, and we definitely will look into it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the report!&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2013 08:19:24 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/504674#M19490</guid>
      <dc:creator>Goodman</dc:creator>
      <dc:date>2013-08-15T08:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search query when server connection is not established yet returns "Please try another sear</title>
      <link>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/1006144#M37909</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class="hps"&gt;Hi, this&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is going to have&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;a problem&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;with the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;search&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;query&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;When&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the server&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;connection&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is not&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;yet&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Established&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;returns&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;"Please&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;try another&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;search&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Windows Vista SP2&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/99177"&gt;@Goodman&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I spoke with the Android team. Although it doesn't meet the criteria for an urgent resolution, it's a good find, a great bug report, and we definitely will look into it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the report!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jan 2015 00:51:58 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Search-query-when-server-connection-is-not-established-yet/m-p/1006144#M37909</guid>
      <dc:creator>visockasaidas</dc:creator>
      <dc:date>2015-01-01T00:51:58Z</dc:date>
    </item>
  </channel>
</rss>

