Twoje komentarze

You likely will not be able to removeIndex this json, b/c it doesn't belong to a user with auth to do that. 

To get the code, your alert should be: <alert message="[datasource:parseLogin.1.code]" /> 
3 would be the third value in the datasourceindex. Or an item in the datasource list.  
Doug,

Were you able to get what you needed here once you encoded the & in your source? Or are you still having issues?
Doug,

In that case you may consider using the datasource properties of add and removeindex. You can read about those here: 
https://files.rarewire.com/wordpress/2012/04/datas...


These only work for JSON. 
<assign property="datasource:datasource1.add" value='{"url":"_url"}'/>
<assign property="datasource:datasource1.removeIndex" value='3'/>

Doug, 

You would have to query the json from the app just like any other time, only once you get the querycomplete, then you can insert those data points into a SQL query string in a new datasource. 

So it would look something like this:

 
<datasource name="json" source="www.jsonfeed.com" query="//" providertype="json" querycomplete="save-jsonstuff">
<datasource name="db" source="sql://jsonstuff" query="CREATE TABLE IF NOT EXISTS JSONSTUFF (ID INTEGER PRIMARY KEY AUTOINCREMENT, TITLE TEXT, PAGE TEXT, THUMB TEXT);" providertype="sql"/>    <datasource name="db-list" source="sql://jsonstuff" query="SELECT * FROM JSONSTUFF ORDER BY ID DESC;" providertype="sql"/> 


<action name="save-jsonstuff">    <assign property="datasource:db.query" value="INSERT INTO FAVORITES (title, page, thumb) values ('[datasource:json.1.title]', '[ <assign property="datasource:db.query" value="INSERT INTO FAVORITES (title, page, thumb) values ('[datasource:json.1.page]', '[ <assign property="datasource:db.query" value="INSERT INTO FAVORITES (title, page, thumb) values ('[datasource:json.1.thumb]')" />    
<assign property="datasource:db-list.query" value="SELECT * FROM JSONSTUFF"/></action>
I created a sample wire and I am seeing this crash for me as well. I will log a bug report.

Thanks.

UPDATE: Actually I was able to get this to work for my sample by properly incrementing the var in my loop conditional. Can you share your loop statement and I will troubleshoot it. 
Steve,

Did you happen to update the engine version of the app in between updates? Apps in the store can only accept live updates using the same engine version submitted to the store.