Tagged Questions
0
votes
1answer
35 views
c# convert a part of a json string to objects
ive got a problem decoding a json output from api.openkvk.nl. I only want the ROWS converted to objects, Whats the best way to convert the json rows to a List?
a json example is:
...
1
vote
1answer
64 views
PHP Recieve JSON but can't decode it
I receive json code in PHP but if I try to decode it nothing happens.
CODE:
$json = stripslashes($_POST['json']);
$output = json_decode($json);
When I log $json and $output to the console:
$json ...
0
votes
1answer
23 views
C / Youtube API Request > VLC
Im trying to improve my tiny C application wich streams youtube videos.
For some reason im not beeing able to send request and decode json.
Could someone point me in the right direction, this is the ...
0
votes
1answer
32 views
Parse Hashtable in JSON, perfect(jsonencode). But I don't know how to parse json in Hashtable(jsondecode). (Android)
I've created a JSON encode where you enter a HashTable (public Hashtable<?, ?> JSonDecode(String data) {... return objJS.toString(); } ) and get a string in JSON format. That is:
If I have a ...
2
votes
2answers
40 views
Inset php json encoded array into database
I need to insert elements of a php encoded array into a database and I'm completely stuck. I have first used json encode to to grab data from the database using an SQL query (which I did successfully) ...
0
votes
0answers
81 views
How to convert escaped http request data to a normal string
I am using .net 3.5 to write a simple REST web service. This will use JSON to pass data to and from it. I have a simple test HTML page I am using to send POST data to the service. When I receive the ...
1
vote
1answer
37 views
JSON Quotes Being Unescaped In POST
I have a piece of code that accepts a JSON string as a POST parameter. The challenge I'm having is how the string is decoded. Consider a post to mygateway.php with a field meta of:
{"test" : "One ...
-2
votes
6answers
76 views
How to decode some JSON into PHP
I have the following JSON output from a file. How would I extract the "last" from "SLL" into a php variable?
{
"USD" : {"15m" : 93.89699, "last" : 93.89699, "buy" : 93.25001, "sell" : 93.89698, ...
2
votes
1answer
30 views
Json decode in php basics
I'm trying to learn json in php. Here's my json result from a ElasticSearch query.
{
"took" : 1,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
...
0
votes
1answer
66 views
Why is JSON not being returned from GiantBomb API
Im trying to use the GiantBomb api to query video games, and currently when I enter the URL into a browser, it works just fine. The Json data shows up.
Heres an example url..
...
1
vote
2answers
48 views
convert the values from the json to drop down
i would like to extract all the values that correspond to the organisations to come under the drop down menu as options for organisation,but now only the last value of the oraganisation is showing up ...
1
vote
2answers
65 views
json array to standard array
Let me explain my problem, I am supposed to call a web service before the contact form is shown, the return of the web service is:
$items = ...
-1
votes
2answers
90 views
JSON PHP array decode - Access specific data [closed]
I can't find out how to echo "tags" in this JSON data.
{"totalHits":26,"hits":[{"previewHeight":92,"tags":"sunflower, sunflower field, flora"}]};
I can echo "totalHits", by using this:
$json = ...
0
votes
0answers
32 views
Json Decode,Access, show and separate names with ID, every 9 names
Hello :) I give you the Json Decode below.
http://pastebin.com/XqhTMWCS
It presents my last 10 games.
I need to get my 4 teamates for every game,and my 5 enemies.(names)
When someone is a teamate,his ...
0
votes
3answers
66 views
How can I get the name with the ID ? Or sort them?
I got this big problem,and I can't find a solution..
I got this Json being returned to me from an API,but I don't really know how can I get the name of the hero by using his id ?
[
{ "id":0, ...
2
votes
3answers
247 views
PHP Undefined Index When Decoding From Json
I am trying to Json decode something and get the value I want.
But I get PHP undefined index error.
This is my code.
<?php
$json = '[{"totalGamesPlayed":25,"championId":0}]';
$data = ...
0
votes
2answers
174 views
how to handle encoded cyrillic data in json using Qt?
I have a JSON but all cyrillic characters are encoded like this: \u0418\u0437\u0431\u0435.
How can I read this into QString?
0
votes
0answers
154 views
Get data from one table and put in the second table with mysql?
It is my first post here. I have a table where i collect the id's from facebook pages. I have another table where i collect all informations about these pages.
My question is: how can i pass the id's ...
4
votes
2answers
123 views
php json readable format
Below is my JSON format string:
a:1:{i:0;a:10:{s:2:"id";s:4:"2086";s:12:"variation_id";s:4:"2091";s:4:"name";s:10:"VELCRO ...
0
votes
2answers
88 views
error while extracting body part from JSON in php
I am creating http_client object and making a GET request. Below is my code.
$httpc = new HTTP_CLIENT();
$httpc->get("$endpointUrl?operation=getchallenge&username=$userName");
$response = ...
1
vote
2answers
154 views
CodeIginiter, not being able to do a JSON Encode output
I'm pretty sure I'm missing something simple, anyway, I have tried for the past three hours to JSON encode some query results, something I do it quite often with code igniter, however, it just doesn't ...
1
vote
1answer
124 views
PHP decode strange json-feed
I have a json-feed that looks like this that I need to decode using cURL.
"count":836,
"value":{
"title":"AW-rss",
"description":"Pipes Output",
...
1
vote
1answer
153 views
PHP - json_decode() returns null when using echo
I am using the following script to decode a json. Although the var_dump($obj) returns result (similar to one in here Example #1), the echo line doesn't return any result, as if the $obj being null.
...
2
votes
2answers
105 views
Design Issue - decoding json to specific object class or generic JsonEntity
I'm working at an Android application that receives some JSON objects through HTTP. Then i store received data to DB. Data received through http differs from data stored in database, so i have 2 ...
0
votes
1answer
140 views
How to Encode Json with Arrays Structure in PHP MySql?
I have 2 tables in MySql
Section
ID Name
=====================
1 Section1
2 Section2
Category
ID SectionID Name
=========================================
1 ...
1
vote
1answer
283 views
How to convert a String with umlauts back to JSON
I have this JSON Python String:
linklist = str('
{
"Download":{
"Test": "http://www.test.org",
u"K\xf6ter": "http://www.koeter.de"}
}'
)
I want to use:
myJson= json.loads(linklist)
But ...
-1
votes
1answer
40 views
PHP JSON_DECODE health data
I've read all the JSON_DECODE postings and can't figure out how to parse this mashery code.
Here's the source:
[{
"packageInfo": [
{
"ndc3Segment": "58406-435-04",
...
1
vote
2answers
128 views
Decoding JSON to give me a certain variable in Python?
I'm using Python 2.7, and what I'm trying to do is this:
I have the following JSON String.
http://www.ows.newegg.com/Products.egg/N82E16822148992
In this string, there are multiple values called ...
0
votes
0answers
139 views
Json decode parsing value in php
I've problem after parsing the json data here's the code
$data = json_decode($this->_response->getBody());
print_r($data);die();
this return
stdClass Object
(
[responseHeader] ...
3
votes
3answers
9k views
Decode JSON with jQuery / AJAX
I'm trying to decode a JSON with jQuery.
Here's what I get (for instance a class, here with one student):
"{"Students":[{"Name":John,"Grade":17,}],"TotalClass":17,"TotalCount":1,}"
here's what I ...
0
votes
5answers
1k views
Why does json_decode return null for empty array?
Why would this echo "NULL"? In my would it would be decoded to an empty array.
Is it something obvious I'm missing?
<?php
$json = json_encode(array());
$json_decoded = json_decode($json, true);
...
2
votes
1answer
7k views
Extjs how to decode a json string?
I have to decode json code with Extjs 4 :
I have used Ext.decode(string, true), but i doesn't work 'cause my string is a json with a json string (escaped) inside... like this:
var string = ...
6
votes
2answers
233 views
Python: Change list type for json decoding
in Python 2.7+ I can use the object_pairs_hook in the builtin json module to change the type of the decoded objects. Is there anyway to do the same for lists?
One option is to go through the objects ...
1
vote
1answer
1k views
perl: convert a string to utf-8 for json decode
I'm crawling a website and collecting information from its JSON. The results are saved in a hash. But some of the pages give me "malformed UTF-8 character in JSON string" error. I notice that the the ...
0
votes
4answers
239 views
Parse JSON with PHP within a Loop
How do I parse this JSON with PHP?
[{"index":0,"date":" 20120029","title":"testtitle"}
There are multiple instances of this. for example:
[{"index":0,"date":" ...
0
votes
1answer
337 views
Having trouble with server.htmlDecode() returning a JSON string from Database with vb.net
I have created a function which essentially enables me to output anything I need from my database in a similar method to Facebook's FQL querying method as a JSON text result.
I can also use the same ...
0
votes
0answers
41 views
PHP:JSON Decoding get a value from array by a value inside the array
$new = $all['meta_key:first_name']->meta_value;
This code don`t work, but what it supposed to do, is get a value from an array by a value inside the array (meta_key:first_name).
How can i solve ...
0
votes
3answers
190 views
Splitting JSON data in iPhone
I got this data from my server using JSON:
{
ID = 198;
dtDate = "2012-03-14 00:00:00";
dtTime = "06:00:00";
iPublished = 1;
sProgram = "Devotional Hits";
}
{
ID = 199;
...
0
votes
1answer
217 views
Decoding JSON into an array for a xbox live image script?
Im trying to turn a json file of people xbox live data into variables so i can use them in a php generated image.
My json file is here: http://www.xboxgamercard.org/gamercard/test3/xbox.php
What I ...
0
votes
3answers
4k views
How would I read this array (“stdClass Object”)
I am using the Quizlet API 2.0, and I am pretty new to this
How do I read a value(s) from something like this:
stdClass Object ( [id] => 102269 [name] => Learn Spanish with Cats! [set_count] ...
2
votes
1answer
438 views
decoding json from ustream api with python
I'm trying to use simplejson to parse a request from the ustream data api, and I get this error when decoding. I'm new to the json library in python, so i'm not sure where to begin working towards a ...
-1
votes
1answer
267 views
0
votes
2answers
198 views
java - json extract/decode issue - json within json?
very simple java/json question.
I have the following test chunk of code. I can get the 1st element using the ".get()" by either index, or by the key. but I can't get any other elements by key...
The ...
0
votes
1answer
3k views
simplejson in Python throws value error
I've got a JSON string that I'm posting to my Python script. This is an example string:
{"uid":"1111111","method":"check_user"}
In my Python code I simply call simplejson.loads( str ) where str is ...
1
vote
2answers
659 views
How To Convert JSON String That Contains Encoded Unicode
Could anyone tell me how to convert the following json object string, which contains encoded unicode characters (Chinese in this case) to human readable one using c# in asp.net?
...
2
votes
1answer
263 views
POSTed JSON from Android can't decode in PHP
i POST a JSON-String from an Android Application to a Webserver. There i want to decode the String into JSON and save the data into a database. But here is the Problem.
I read out the POST-Variable:
...
0
votes
1answer
117 views
PHP json decoding
can someone help me decode this json into php?
here is the json:
{
"queue": {
"active_lang": "en",
"paused": false,
"session": "9bc093acde2a3833569ace5f71ee134e",
...
3
votes
1answer
658 views
Json_Decode not Decoding my JSON
I am using couchDB to get a UUID so that I can send a new document to the database.
In order to get this UUID, I use a curl statement:
function getUUID(){
$myCurlSubmit = curl_init();
...
0
votes
1answer
617 views
Save all AJAX JSON data to file using Fiddler2
I want to save to a file, all the data returned from multiple AJAX requests. The requests are of the same format. And AJAX is using JSON (which encodes text in UTF-8).
I'm trying out "Fiddler Web ...
3
votes
4answers
169 views
Help Decoding JSON
I'm trying to get the "screenshotUrls" string from this piece of json:
$request_url = 'http://itunes.apple.com/search?term=ibooks&country=us&entity=software&limit=1';
$json = ...




