empty
واجهه برمجية لغرفة العميل

واجهه برمجية لغرفة العميل

أولوية إنستافوركس هى تقديم خدمات مبتكرة لعملائها من أجل نجاحهم فى عمليات التداول. منذ اليوم الأول للشركة وهى تسعى لتزويد عملائها بأحدث التقنيات فى سوق الفوركس.

إلى جانب المزايا الأخرى للعمل مع إنستافوركس، يمكن لكل عميل في الشركة الاستفادة من خدمة جديدة - الواجهة البرمجية لغرفة العميل.

خدمة الواجهة البرمجية هي مكتبة وظائف كبيرة متاحة لكل عميل من عملاء إنستافوركس. باستخدام هذه الخدمة الجديدة، ستتمكن من الوصول إلى الوظائف الرئيسية لغرفة العميل على أي موارد ويب.

فالآن يمكن لكل عميل من عملاء إنستافوركس الاستفادة من المجموعة التالية من الخيارات المتاحة في غرفة العميل: الاستفسارات عن الصفقات المفتوحة والمغلقة ورصيد الحساب والعقود المغلقة خلال فترة زمنية معينة وإحصائيات البونص و سجل الدخول وملخص الحساب.

مستويات الوصول

هناك مستويان من الوصول إلى وظائف الواجهة البرمجية لغرفة العميل.

لا يتطلب الوصول المجاني إدخال أي معلومات إضافية.

بناءا على الإعدادات، مع وصول محدود يمكنك عرض البيانات إلا بعد إدخال كلمة المرور أو كلمة مرور الآي بي وقناع الآي بي.

تسمح الواجهة البرمجية لغرفة العميل لجميع عملاء إنستافوركس بالاحتفاظ بحساب التداول الخاص بهم تحت المراقبة دون الحاجة إلى تسجيل الدخول إلى غرفة العميل على الموقع الرسمي للشركة.

مثال PHP

$Login = 0; #Must be Changed
$apiPassword = "password"; #Must be Changed
$data = array("Login" => $Login, "Password" => $apiPassword);
$data_string = json_encode($data);

$apiAuthenticationMethod = ''; #Must be Changed
$ch = curl_init('https://client-api.instaforex.com/'.$apiAuthenticationMethod);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($data_string)));

$token = curl_exec($ch);
curl_close($ch);

$apiMethodUrl = ''; #Must be Changed
$ch = curl_init('https://client-api.instaforex.com/'.$apiMethodUrl.$Login); #possibly Must be Changed part with [$Login]. Depends on the method param
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('passkey: '.$token));
$result = curl_exec($ch);
echo $result;

مثال C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Text;

namespace ClientPartnerApiDemoProject{
class PartnerApiSample{
public void TestMethod(){
const int login = 000000;
const string pass = "your pass";
var token = GetToken(login, pass);
var result = GetCommissionRecords(login, token);
foreach (var trade in result){
Console.WriteLine("{0} {1}",trade.Partner, trade.BalanceRecords.Count);
}
}
public string GetToken(int login, string password){
var client = new HttpClient();
HttpContent tokenContent = new ObjectContent(typeof(AccessTokenRequest), new AccessTokenRequest { Login = login, Password = password }, new JsonMediaTypeFormatter());
var token = client.PostAsync("https://client-api.instaforex.com/api/Authentication/RequestPartnerApiToken", tokenContent).Result.Content.ReadAsStringAsync().Result;
return token;
}
public List GetCommissionRecords(int login, string token){
var client = new HttpClient();
client.DefaultRequestHeaders.Add("passkey", token);
var result = client.GetAsync(string.Format("https://client-api.instaforex.com/partner/GetCommissionRecords/{0}", login)).Result.Content.ReadAsAsync>().Result;
return result;
}
public class AccessTokenRequest{
public int Login { get; set; }
public string Password { get; set; }
}
}
}

شاهد ايضاً

إنستافوركس - الشريك الرسمي لـ دراغون ريسينغ

إنستافوركس - الشريك الرسمي لـ دراغون ريسينغ

تماماً مثل عالم المال، يعمل عالم سباقات السيارات المحترفة باستمرار على تطوير وتقديم أحدث التقنيات التي تصبح في نهاية المطاف أجزاء عادية من حياتنا اليومية. حدث هذا مع المحركات التوربينية ونظام KERS وفرامل السيراميك والتداول عبر الإنترنت، بالإضافة إلى نظامي بام و الفوركس كوبي. في ذلك الوقت، بدا كل شيء فريدًا ومتوفرًا فقط للأشخاص المختارين. واليوم نحن نقود السيارات الكهربائية ويمكننا التداول بسهولة في سوق الفوركس العالمي من خلال الأدوات التي نحملها في جيوبنا.

إنستافوركس - الشريك الرسمي لـ دراغون ريسينغ

تماماً مثل عالم المال، يعمل عالم سباقات السيارات المحترفة باستمرار على تطوير وتقديم أحدث التقنيات التي تصبح في نهاية المطاف أجزاء عادية من حياتنا اليومية. حدث هذا مع المحركات التوربينية ونظام KERS وفرامل السيراميك والتداول عبر الإنترنت، بالإضافة إلى نظامي بام و الفوركس كوبي. في ذلك الوقت، بدا كل شيء فريدًا ومتوفرًا فقط للأشخاص المختارين. واليوم نحن نقود السيارات الكهربائية ويمكننا التداول بسهولة في سوق الفوركس العالمي من خلال الأدوات التي نحملها في جيوبنا.

InstaSpot

InstaSpot

We have created a convenient service for buying, selling, and exchanging currencies, cryptocurrencies, and other assets.

InstaSpot is a trustworthy service for a trader, miner, freelancer, and for everyone who does business on the Internet.

Familiarize yourself with a user-friendly and reliable exchanger for digital currencies and other popular assets. InstaSpot is based on the principle of P2P trading, which allows buyers and sellers to interact directly without intermediaries. At the same time, InstaForex acts as a guarantor of the secured transaction.

InstaSpot

We have created a convenient service for buying, selling, and exchanging currencies, cryptocurrencies, and other assets.

InstaSpot is a trustworthy service for a trader, miner, freelancer, and for everyone who does business on the Internet.

Familiarize yourself with a user-friendly and reliable exchanger for digital currencies and other popular assets. InstaSpot is based on the principle of P2P trading, which allows buyers and sellers to interact directly without intermediaries. At the same time, InstaForex acts as a guarantor of the secured transaction.

Grand Choice Contest by InstaForex

InstaForex always strives to help you fulfill your biggest dreams. We all have different dreams and goals. We have taken it into account before launching our new contest. This time, we have prepared more than one prize. The winner will have the opportunity to decide which of the dreams to pursue.

Grand Choice Contest by InstaForex

InstaForex always strives to help you fulfill your biggest dreams. We all have different dreams and goals. We have taken it into account before launching our new contest. This time, we have prepared more than one prize. The winner will have the opportunity to decide which of the dreams to pursue.

تساعد إنستافوركس عملائها على تحقيق أحلامهم!

تساعد إنستافوركس عملائها على تحقيق أحلامهم!

تعد المشاركة فى حملات إنستافوركس فرصة فريدة لتحقيق أحلامك. يمكنك الفوز بأحدث أداة أو سيارة من الدرجة الأولى. إلى جانب ذلك، يمكن للمتداولين المحنكين والمبتدئين المشاركة في المسابقة.

لذا، انضم وجرب حظك مع إنستافوركس! تذكر أن النصر في بعض الأحيان ليس هو الشيء الأكثر أهمية. بصرف النظر عن هذا، ستحصل أيضًا على خبرة جديدة ومهارات تداول ومنافسة جديرة وجوائز قيمة.

تساعد إنستافوركس عملائها على تحقيق أحلامهم!

تعد المشاركة فى حملات إنستافوركس فرصة فريدة لتحقيق أحلامك. يمكنك الفوز بأحدث أداة أو سيارة من الدرجة الأولى. إلى جانب ذلك، يمكن للمتداولين المحنكين والمبتدئين المشاركة في المسابقة.

لذا، انضم وجرب حظك مع إنستافوركس! تذكر أن النصر في بعض الأحيان ليس هو الشيء الأكثر أهمية. بصرف النظر عن هذا، ستحصل أيضًا على خبرة جديدة ومهارات تداول ومنافسة جديرة وجوائز قيمة.

7,000,000 متداول في جميع أنحاء العالم يختارون إنستافوركس

بالنسبة لنا، كان الحدث الرئيسي لهذا الشهر هو اللحظة التي بلغ فيها عدد عملائنا سبعة ملايين! تنمو عائلة إنستافوركس، مما يشجعنا على أن نشعر بالتفاؤل ويلهمنا لتحقيق إنجازات مستقبلية.

7,000,000 متداول في جميع أنحاء العالم يختارون إنستافوركس

بالنسبة لنا، كان الحدث الرئيسي لهذا الشهر هو اللحظة التي بلغ فيها عدد عملائنا سبعة ملايين! تنمو عائلة إنستافوركس، مما يشجعنا على أن نشعر بالتفاؤل ويلهمنا لتحقيق إنجازات مستقبلية.

لا تستطيع التحدث الآن؟
اطرح سؤالك في الدردشة.
Widget callback
 

Dear visitor,

Your IP address shows that you are currently located in the USA. If you are a resident of the United States, you are prohibited from using the services of InstaFintech Group including online trading, online transfers, deposit/withdrawal of funds, etc.

If you think you are seeing this message by mistake and your location is not the US, kindly proceed to the website. Otherwise, you must leave the website in order to comply with government restrictions.

Why does your IP address show your location as the USA?

  • - you are using a VPN provided by a hosting company based in the United States;
  • - your IP does not have proper WHOIS records;
  • - an error occurred in the WHOIS geolocation database.

Please confirm whether you are a US resident or not by clicking the relevant button below. If you choose the wrong option, being a US resident, you will not be able to open an account with InstaForex anyway.

We are sorry for any inconvenience caused by this message.