{"id":1148,"date":"2022-03-02T14:53:14","date_gmt":"2022-03-02T14:53:14","guid":{"rendered":"https:\/\/blog.ultramsg.com\/send-whatsapp-api-mesajlarini-kullanarak-objective-c\/"},"modified":"2022-05-03T10:54:25","modified_gmt":"2022-05-03T10:54:25","slug":"send-whatsapp-api-mesajlarini-kullanarak-objective-c","status":"publish","type":"post","link":"https:\/\/blog.ultramsg.com\/tr\/send-whatsapp-api-mesajlarini-kullanarak-objective-c\/","title":{"rendered":"Objective-C ile WhatsApp API Nas\u0131l G\u00f6nderilir"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"introduction\">Tan\u0131t\u0131m<\/h2>\n\n<p>Bu e\u011fitimde, Objective-C kullanarak WhatsApp API \u00fczerinden mesaj g\u00f6ndermek i\u00e7in basit \u00f6rnekler olu\u015fturaca\u011f\u0131z.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"first-whatsapp-api-message-using-objective-c\">Objective-C Kullanan \u0130lk WhatsApp API Mesaj\u0131<\/h2>\n\n<h2 class=\"wp-block-heading\" id=\"first-whatsapp-api-message-using-objective-c\"><br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h>\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = &#91;&#91;NSMutableData alloc] initWithData:&#91;@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n&#91;postData appendData:&#91;@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n&#91;postData appendData:&#91;@\"&amp;body=WhatsApp API on UltraMsg.com works good\" dataUsingEncoding:NSUTF8StringEncoding]];\n&#91;postData appendData:&#91;@\"&amp;priority=10\" dataUsingEncoding:NSUTF8StringEncoding]];\n&#91;postData appendData:&#91;@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = &#91;NSMutableURLRequest requestWithURL:&#91;NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/chat\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n&#91;request setHTTPMethod:@\"POST\"];\n&#91;request setAllHTTPHeaderFields:headers];\n&#91;request setHTTPBody:postData];\n\nNSURLSession *session = &#91;NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = &#91;session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n&#91;dataTask resume];<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-image\">Resim G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;image=https:\/\/file-example.s3-accelerate.amazonaws.com\/images\/test.jpg\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;caption=image Caption\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/image\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-document\">Belge G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;filename=hello.pdf\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;document=https:\/\/file-example.s3-accelerate.amazonaws.com\/documents\/cv.pdf\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/document\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-audio\">Ses G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/audio\/2.mp3\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/audio\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-voice\">Ses G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/voice\/oog_example.ogg\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/voice\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-video\">Video G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;video=https:\/\/file-example.s3-accelerate.amazonaws.com\/video\/test.mp4\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/video\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-link\">Link g\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;link=https:\/\/en.wikipedia.org\/wiki\/COVID-19\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/link\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-contact\">Ki\u015fi G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;contact=14000000001@c.us\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/contact\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-location\">Konum g\u00f6ndermek<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;address=ABC company \\n Sixth floor , office 38\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;lat=25.197197\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;lng=55.2721877\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/location\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-vcard\">Vcard g\u00f6nder<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">#import &lt;Foundation\/Foundation.h&gt;\n\nNSDictionary *headers = @{ @\"content-type\": @\"application\/x-www-form-urlencoded\" };\n\nNSMutableData *postData = [[NSMutableData alloc] initWithData:[@\"token=token_here\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;to=1408XXXXXXX\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;vcard= BEGIN:VCARD\\nVERSION:3.0\\nN:lastname;firstname\\nFN:firstname lastname\\nTEL;TYPE=CELL;waid=14000000001:14000000002\\nNICKNAME:nickname\\nBDAY:01.01.1987\\nX-GENDER:M\\nNOTE:note\\nADR;TYPE=home:;;;;;;\\nADR;TYPE=work_:;;;;;;\\nEND:VCARD\" dataUsingEncoding:NSUTF8StringEncoding]];\n[postData appendData:[@\"&amp;referenceId=\" dataUsingEncoding:NSUTF8StringEncoding]];\n\nNSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\"https:\/\/api.ultramsg.com\/instance1150\/messages\/vcard\"]\n                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy\n                                                   timeoutInterval:10.0];\n[request setHTTPMethod:@\"POST\"];\n[request setAllHTTPHeaderFields:headers];\n[request setHTTPBody:postData];\n\nNSURLSession *session = [NSURLSession sharedSession];\nNSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request\n                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {\n                                                if (error) {\n                                                    NSLog(@\"%@\", error);\n                                                } else {\n                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;\n                                                    NSLog(@\"%@\", httpResponse);\n                                                }\n                                            }];\n[dataTask resume];<\/code><\/pre>\n\n<p>son olarak, Tam <a href=\"https:\/\/docs.ultramsg.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Whatsapp API Belgelerini<\/a> ve <a href=\"https:\/\/blog.ultramsg.com\/whatsapp-api-by-ultramsg-faq\/\" data-type=\"URL\" data-id=\"https:\/\/blog.ultramsg.com\/whatsapp-api-by-ultramsg-faq\/\">SSS&#8217;yi<\/a> g\u00f6rebilirsiniz.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tan\u0131t\u0131m Bu e\u011fitimde, Objective-C kullanarak WhatsApp API \u00fczerinden mesaj g\u00f6ndermek i\u00e7in basit \u00f6rnekler olu\u015fturaca\u011f\u0131z. Objective-C &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Objective-C ile WhatsApp API Nas\u0131l G\u00f6nderilir\" class=\"read-more button\" href=\"https:\/\/blog.ultramsg.com\/tr\/send-whatsapp-api-mesajlarini-kullanarak-objective-c\/#more-1148\" aria-label=\"Read more about Objective-C ile WhatsApp API Nas\u0131l G\u00f6nderilir\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":1130,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[82],"tags":[97,85,87],"class_list":["post-1148","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-whatsapp-apisi","tag-amac-c","tag-ogreticiler","tag-whatsapp-apisi","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"_links":{"self":[{"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/posts\/1148","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/comments?post=1148"}],"version-history":[{"count":6,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/posts\/1148\/revisions"}],"predecessor-version":[{"id":2723,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/posts\/1148\/revisions\/2723"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/media\/1130"}],"wp:attachment":[{"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/media?parent=1148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/categories?post=1148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/tr\/wp-json\/wp\/v2\/tags?post=1148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}