{"id":5739,"date":"2014-04-06T11:39:41","date_gmt":"2014-04-06T11:39:41","guid":{"rendered":"https:\/\/unknownerror.org\/index.php\/2014\/04\/06\/androidhttp-postsetintervalrelated-issues-collection-of-common-programming-errors\/"},"modified":"2014-04-06T11:39:41","modified_gmt":"2014-04-06T11:39:41","slug":"androidhttp-postsetintervalrelated-issues-collection-of-common-programming-errors","status":"publish","type":"post","link":"https:\/\/unknownerror.org\/index.php\/2014\/04\/06\/androidhttp-postsetintervalrelated-issues-collection-of-common-programming-errors\/","title":{"rendered":"android,http-post,setintervalRelated issues-Collection of common programming errors"},"content":{"rendered":"<ul>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/06d3eaa033e8adaf69231e1ba30a1a67?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nPadma Kumar<br \/>\nandroid android-camera<br \/>\nI am developing an application that starts capturing images automatically every 4 secs after when i click the button once.. But I am getting error.. Here is what I am doingbuttonClick.setOnClickListener(new OnClickListener() {public void onClick(View v) {new Thread(new Runnable() {public void run() {while(true){preview.camera.takePicture(shutterCallback, rawCallback,jpegCallback);try {Thread.sleep(4000);} catch (InterruptedException e) {\/\/ TODO Auto-generated catch blocke.printStackTrace();}}}})<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/63bab70a472e5d02314eba331fe7674b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nDeepak<br \/>\nandroid encryption sqlcipher<br \/>\nI have using Sqlcipher for my database encryption. I am using SQLiteDatabase.openDatabase for creating, editing and read the sqlchiphered database. I could open ,read and edit properly but suddenly i got the follwing error and after that i couldnt open the database itself 12-25 17:59:07.961: E\/Database(6794): SELECT locale FROM android_metadata failed 12-25 17:59:07.961: W\/System.err(6794): net.sqlcipher.database.SQLiteException: file is encrypted or is not a database 12-25 17:59:07.966: W\/Syst<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/001735606837df85fe2e74af4d5f0a34?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nuser1145533<br \/>\nandroid multithreading android-ndk jni<br \/>\nMy application makes multiple calls from native threads to java, i am seeing the memory usage of the application slowly creeping up. It looks like the calls to attach and detach cause JAVA to leak a thread. I can see this by running DDMS memory analyser.I have written a really simple test app that demonstrates my issue, start test is called from JAVA and kicks off the thread. It doesn&#8217;t do anything other then attach and then detach the worker thread.void detachFromThread(JavaVM *vm) {if(vm != NU<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/b2f0b9a9bca26ef546bfeb826731c5ac?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nJane Wayne<br \/>\nandroid python monkeyrunner<br \/>\ni have the following python script in an attempt to take a screen shot of a device (not an emulator).import sys import timefrom com.android.monkeyrunner import MonkeyRunner, MonkeyDeviceCONNECTION_TIME_OUT = 30 deviceName = str(sys.argv[1]) pathName = str(sys.argv[2])device = MonkeyRunner.waitForConnection(CONNECTION_TIME_OUT, deviceName) result = device.takeSnapshot() result.writeToFile(pathName,&#8217;png&#8217;)i run this script at the windows command prompt as follows.monkeyrunner.bat -v ALL %SCRIPT_DIR<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/efadc541a1ffe6fd0f7353f869df9b8b?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nCy Kaustav<br \/>\nandroid phonegap extjs gcm<br \/>\nHi i have already built the native GCM application for Android which is working very fine in all my android devices. But i want to further use this GCM service like i want to integrate this GCM service with my existing Android app as for for testing i have already done my server for GCM but i am lagging behind all because of the Client side implementation. i have been trying to get the relevant information regarding my project but i couldn&#8217;t be able to find an resource of Client Side Implementat<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/5c8fc02a881af739969e39d7982d2b6c?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\ngenpfault<br \/>\nandroid animation video text opengl-es<br \/>\nWe are trying to create a text animation like Transition and Zoom on the Video. We are not able to get Smooth transition and the effect is so jerky. Then we understood sub pixel rendering is not possible in android. What alternatives can we think of? Can we solve this problem in OpenGL?Ok&#8230; I would like to add more to my question&#8230;.We are actually trying to implement text animations on top of a video which is played by a native player on a surface view. We tried to achieve the text animation<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/75ea06662d58850ead3d2071f7876f01?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\ntazeenmulani<br \/>\njava android sqlite<br \/>\nI work with SQLite database in my Android application.I want only one column retrieved in spinner.When i run the application ,the application is crash.And my log cat shows &#8220;Bad request for field slot 0,1. numRows = 1, numColumns = 1&#8221;.Below are the codes for retrieving data from database and put it into spinner(NewleadActivity.class).This is my Adapter classpublic class DbHelper extends SQLiteOpenHelper{\/\/ Database Version@SuppressWarnings(&#8220;unused&#8221;)private static final int DATABASE_VERSION = 1;\/\/<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.stack.imgur.com\/hwdFP.jpg?s=32&amp;g=1\" \/><br \/>\nSanthosh<br \/>\njava android inputstream ioexception processbuilder<br \/>\nmaking a class , with several functions , I am having a problem with one of these functions which will use the ProcessBuilder to send a command and take its output as a string , acting as a shell command . When I use it , it catches an IOException , with a Bad file number , at the InputStreamReader , and returns &#8220;ERROR!!!&#8221; , here is my code , if you need to know anything about this comment &#8230; I am using the command &#8220;ls&#8221; btw , &#8220;ls \/sdcard\/&#8221; &#8230;public String builder(String str) { startTimer();<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/0263c4c9036955a2d9768bf6a35a8345?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nKara<br \/>\nandroid out-of-memory<br \/>\nI am developing an Android Application to load some images to emulator, but it fails with the below error:11-07 19:38:51.596: E\/dalvikvm-heap(322): 73670400-byte external allocation too large for this process.11-07 19:38:51.596: E\/GraphicsJNI(322): VM won&#8217;t let us allocate 73670400 bytes11-07 19:38:51.596: D\/AndroidRuntime(322): Shutting down VM11-07 19:38:51.616: W\/dalvikvm(322): threadid=1: thread exiting with uncaught exception (group=0x4001d800)11-07 19:38:51.926: E\/AndroidRuntime(322): FATA<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/7039ae5bf7eb756098b7a988dfaa287f?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nPatrick Mahoney<br \/>\nandroid toast android-xml<br \/>\nI know that I could do all of this easily with a custom toast layout, but in creating a custom layout, I would no longer be using the system&#8217;s default toast view.Example: Toasts of course look different in Android 2.2 vs Android 4.0. If I create a custom view for my toast, then it will look the exact same in both versions, but what I want is for it to retain its&#8230; &#8220;Androidiness&#8221; for lack of a better word. Basically, does anyone know of a default toast XML layout? Is that even possible?<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/ecdaedb2e31896c71265ee4855cec8fb?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nkdhuang<br \/>\nandroid django sqlite http-post jpeg<br \/>\nThis is my first android app and I am trying to POST images taken on the camera (ICS 4.0) to a Django server. I have been getting a NULL pointer exception error but I have no clue where this is occurring. Also, When I don&#8217;t the app crashes when trying to upload. I&#8217;m not sure what is going on. I am using Fragments.Here is my Django post code:def post(self, request, *args, **kwargs):image = get_object_or_404(Img, **kwargs)inst = Instance(stream=image.stream)uploaded_file = \\File(&#8216;-.jpg&#8217;, self.FILE<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c97f2850f730a94983bc400b076afa6c?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nswiki<br \/>\nphp android http-post httpclient connectionexception<br \/>\ni am using HttpClient to send POST requests from Android to php server. Connection was working fine, but in last few days i get response &#8220;Connection refused from server&#8221;. But strange is that connection is not refused every time&#8230;Connection is not so stable as i require&#8230; Many times i get exception connection refused. PHP Server is standard php Web hosting&#8230; I suppose that the problem will be on server side, because connection can be established, but due to &#8220;connection refused&#8221; is very unstabl<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/58ff4e407e60d2dab0d60e5fdaf3db51?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nMikey<br \/>\napi grails post http-post<br \/>\nI am writing a Grails app, and I want the controller to hit some other API with a POST and then use the response to generate the page my user sees. I am not able to Google the right terms to find anything about posting to another page and receiving the response with Grails. Links to tutorials or answers like &#8220;Thats called&#8230;&#8221; would me much appreciated.<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/b9da2ca6abf3a1e28fb470f2b3ae2c34?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nabatishchev<br \/>\nc# ajax asp.net-mvc http-post<br \/>\nThis behavior is making me wonder about my sanity..I have a form that has two places that accept input, let&#8217;s call them ValueA and ValueB. The user can enter a value in either one and the form submits.&lt;div id=&#8221;MyUpdateTarget&#8221;&gt;&lt;% using (Ajax.BeginForm(&#8220;MyControllerAction&#8221;, new AjaxOptions { UpdateTargetId = &#8220;MyUpdateTarget&#8221; })) { %&gt;&lt;%=Html.TextBox(&#8220;ValueA&#8221;, Model.ValueA, new Dictionary&lt;string, object&gt; {{ &#8220;onchange&#8221;, &#8220;$(&#8216;#SubmitButton&#8217;).click(); return false;&#8221; },}) %&gt;&lt;%=<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/8e1df3e3d528df81f504e81fa3feda26?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nuser1314404<br \/>\nphp html mysql http-post<br \/>\nMy $_POST name is : $_POST[p_new_1], $_POST[p_new_2], $_POST[p_new_3], etc. depends on the value of $_POST[number] (above is $_POST[number] equal to 4). Now I need to add that value to table by :mysqli_query($con,&#8221;INSERT INTO `tablename` (`Name`) VALUES (&#8216;$_POST[p_new_1]&#8217;)&#8221;);But it only work if I know that $_POST[number]=2; sometimes $_POST[number] has no value or value greater than 2, in general case it should be:if($_POST[number]!=NULL) for ($i = 1; $i &lt; $_POST[number]; $i++) {mysqli_query<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.stack.imgur.com\/IIAjr.jpg?s=32&amp;g=1\" \/><br \/>\nCRUSADER<br \/>\nandroid json web-services http-post android-volley<br \/>\nI am trying to POST a JSON body using Volley in Android and after spending many hours with no success I am writing this question.Following is mine code snippetStringRequest residentSyncRequest = new StringRequest(Request.Method.POST, Commons.URL,this,this,ADD_REQ){@Overridepublic Map&lt;String, String&gt; getHeaders() throws AuthFailureError {HashMap&lt;String,String&gt; params = new HashMap&lt;String, String&gt;();params.put(&#8220;Content-Type&#8221;,&#8221;application\/json&#8221;);return params;}@Overridepublic byte<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/2994762f1855bb501dfd5305ecbb6551?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nuser2636874<br \/>\nwindows-phone-8 http-post<br \/>\nI&#8217;m new to windows phone 8 development.Could you please help me how to send the xml data to the server through http post calls in windows phone 8?Thanks<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c7715e765817254e0534f89a4092c0aa?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nExplosion Pills<br \/>\nhttp post get http-post http-get<br \/>\nSimply put, I have a website where you can sign up as a user and add data. Currently it only makes sense to add specific data once, so an addition should be idempotent, but theoretically you could add the same data multiple times. I won&#8217;t get into that here.According to RFC 2616, GET requests should be idempotent (really nullipotent). I want users to be able to do something like visithttp:\/\/example.com\/&lt;username&gt;\/add\/?data=1And this would add that data. It would make sense to have a PU<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/e00907e98ad4fa3ed61ad74acd5dca8c?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nDan Maguire<br \/>\nc# http http-post imageshack<br \/>\nDoes anybody know how to upload to imageshack.us with C#? Two other threads here couldn&#8217;t help:\/ That&#8217;s my piece of code. &#8220;PostParamCollection&#8221; is a library for sending HTTP Post. Lots of thanks for any help!Im getting the error-message: &#8221; Sorry, but we&#8217;ve detected that unexpected data is received. Required parameter &#8216;fileupload&#8217; is missing or your post is not multipart\/form-data&#8221;String imageshackurl = &#8220;http:\/\/www.imageshack.us\/upload_api.php?&#8221;;PostParamCollection postParamCollection = new PostP<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/e70c613413960e60b7088bacc6b69b63?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nSJunejo<br \/>\nhttp-post odata4j<br \/>\nI am using Odata4j 0.7.0 API in my project and when I am posting a request using POST method and an empty body it throws following exception;java.lang.RuntimeException: com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in prologat [row,col {unknown-source}]: [1,0]at org.odata4j.core.Throwables.propagate(Throwables.java:11)at org.odata4j.stax2.staximpl.StaxXMLFactoryProvider2$StaxXMLEventReader2.nextEvent(StaxXMLFactoryProvider2.java:113)The idea is that user will access a link say http:\/\/abc.com<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/e7a05a144f218bde07b659bc98e1ca7d?s=32&amp;d=identicon&amp;r=PG&amp;f=1\" \/><br \/>\nuser2864740<br \/>\njavascript syntax timer syntax-error setinterval<br \/>\nI&#8217;m trying to write a simple AI for a game in JavaScript. (The game is not mine.) Here is the extent of my code so far for the AI:function AIManager(grid) {this.events = {};this.grid = grid;setInterval(new function(){console.log(&#8220;hello&#8221;)}, 1000); }When I try to run the game, the console outputs &#8220;hello&#8221; a single time followed byUncaught SyntaxError: Unexpected identifieronce per second, with no stack trace or line number attached to it. (When I set the interval to 1 ms instead of 1000 ms, this er<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/f4e9bb1188639b8562f17a8ffce5aae7?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nDominic Sore<br \/>\njavascript html5 setinterval keydown<br \/>\nSo I am at the very beginning stages of creating my first platform style game in html5.So far I have only implemented left and right movement and no &#8216;gravity&#8217; or collision detection is at play.However, I&#8217;ve already hit an issue.If you go left or right for a short period of time the &#8216;character&#8217; acts as intended (I use character loosely as it&#8217;s the map that is actually moving). If, however, you hold the key down the map moves too fast.I figure the issue is that the keydown event listener is listen<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/9a465a190e4a3489e360a1175b2185ea?s=32&amp;d=identicon&amp;r=PG&amp;f=1\" \/><br \/>\nuser3161756<br \/>\nactionscript-3 setinterval<br \/>\nIn a function i&#8217;m trying to delay the execution of the code through:var thinkTimer = setInterval(Actions(opp), C.THINK_TIME);where Actions is a simple (tested working) function, opp is a small integer and C.THINK_TIME is a constant = 3000 (3 seconds).but using setInterval I got this problem: The function Actions immediatly runs (without waiting the interval) and every 3 seconds I got this message in the output: TypeError: Error #1009: Impossibile accedere a una propriet\u00e0 o a un metodo di un rife<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/34abb476bd1a585eb9e3742d7905af86?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nNorbert Hartl<br \/>\njavascript timeout setinterval<br \/>\nI&#8217;m writing an application that utilizes Javascript timouts and intervals to update the page, is there a way to see how many intervals are setup? I want to make sure that I&#8217;m not accidentally going to kill the browser by having hundreds of intervals setup.is this even an issue?<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/c032a0e8e40dd79b715420e4c5d03b00?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nmeagar<br \/>\njavascript jquery setinterval<br \/>\nI need my contents to be shown in real-time, but when loading this many things it takes up so much CPU and is very laggy.Is there an alternative to my code below? $(document).ready(function() {var refresh_bal = setInterval(function (){$.get(&#8216;.\/php\/get_balance.php&#8217;, function(balance) {$(&#8216;.balance&#8217;).html(balance);});}, 1000);var refresh_total = setInterval(function (){$.get(&#8216;.\/php\/get_total_bets.php&#8217;, function(total) {$(&#8216;.total&#8217;).html(total);});}, 1000);var refresh_profit = setInterval(function ()<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/7a4ccc38c3b53f92065d72a4b46276b2?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nWaclock<br \/>\njavascript settimeout setinterval<br \/>\nI&#8217;m trying to achieve something which souldn&#8217;t be hard to do, but everything I&#8217;ve tried so far hasn&#8217;t worked.I have a function that changes a value every time I click a button, and what I want is: when I hold this button, the value should keep changing.This is what I&#8217;ve tried and hasn&#8217;t worked, setInterval and setTimeout won&#8217;t &#8220;wait&#8221; (the function get&#8217;s called right away thousands of times and the website crashes):$(&#8216;.buttonPlus&#8217;).mousedown(function() {timeoutID =setTimeout(distribucionPorcentua<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/graph.facebook.com\/568175400\/picture?type=large\" \/><br \/>\nAndrew Charlton<br \/>\njavascript ajax json setinterval<br \/>\nI&#8217;ve tried to use setinterval to allow my ajax request to send every 2 seconds but it keeps crashing the page, So I think something is going wrong!Here is my code: var fburl = &#8220;http:\/\/graph.facebook.com\/http:\/\/xzenweb.co.uk?callback=?&#8221;;\/\/getting facebook api content$.getJSON(fburl, function(data){var name = data[&#8220;shares&#8221;];var dataString = &#8216;shares=&#8217;+name;\/\/sending share count data to server$.ajax({type: &#8220;POST&#8221;,url: &#8220;index.php&#8221;,data: dataString,cache: false,success: function(html){$(&#8220;#content&#8221;).ht<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/72668ffebf7def2489081a249dd96957?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nMarcus<br \/>\njavascript animation background-image settimeout setinterval<br \/>\nI&#8217;ve this code:var run_anim = &#8220;&#8221;; var anim_array = [&#8220;\\animations\\pic_1.gif&#8221;,&#8221;\\animations\\pic_2.gif&#8221;,&#8221;\\animations\\pic_3.gif&#8221;,&#8221;\\animations\\pic_4.gif&#8221;]function changeBackgroundURL(elementId, backgroundURL){run_anim = &#8220;false&#8221;;document.getElementById(elementId).style.background=backgroundURL; }function mouseover_anim(elementName){run_anim = &#8220;true&#8221;;changeBackgroundURL(elementName,anim_array[0]);while(run_anim==&#8221;true&#8221;){setTimeout(function(){changeBackgroundURL(elementName,anim_array[1]) parameter = nul<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/f9d94c890d2009eea7620eb2767cb8e6?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nkarthick<br \/>\njavascript setinterval<br \/>\nCan setInterval function in JavaScript slow down a browser or even cause a browser crash?Let&#8217;s say that I have a page with thousands (about 10,000 of them) of &lt;div&gt;&#8217;s and I loop throught them and append them some HTML, like this:var counter = 0;setInterval(function() {$(&#8216;div&#8217;).each(function(i, e) {counter++;$(this).html(&#8216;Added contents for DIV at index: &#8216; + counter);}); }, 1);I have intentionally set the counter++ under the each function so we might slow down the process of this script exe<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/www.gravatar.com\/avatar\/d0136b319e4eb8b7be8c7a92e63739a3?s=32&amp;d=identicon&amp;r=PG\" \/><br \/>\nSergio<br \/>\njavascript recursion setinterval<br \/>\nI&#8217;m trying to run a function every 5 seconds using JavaScript using a recursive setInterval function. The following code just logs &#8220;started&#8221; as fast as possible and then crashes the browser. Why is this not running every 5 seconds?function five() { console.log(&#8220;five&#8221;); setInterval(five(), 5000); } five();<\/li>\n<\/ul>\n<p>Web site is in building<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Padma Kumar android android-camera I am developing an application that starts capturing images automatically every 4 secs after when i click the button once.. But I am getting error.. Here is what I am doingbuttonClick.setOnClickListener(new OnClickListener() {public void onClick(View v) {new Thread(new Runnable() {public void run() {while(true){preview.camera.takePicture(shutterCallback, rawCallback,jpegCallback);try {Thread.sleep(4000);} catch (InterruptedException e) {\/\/ TODO Auto-generated [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-5739","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/5739","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/comments?post=5739"}],"version-history":[{"count":0,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/5739\/revisions"}],"wp:attachment":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/media?parent=5739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/categories?post=5739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/tags?post=5739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}