<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: работа с API]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=11855&amp;type=atom" />
	<updated>2016-07-31T20:13:32Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=11855</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106502#p106502" />
			<content type="html"><![CDATA[<p>Координаты чего?<br />В переменную code записан код на JScript.<br />Который потом выполняется этими строчками:<br /></p><div class="codebox"><pre><code>JS := new ActiveScript(&quot;JScript&quot;)
JS.Exec(code)
msgbox % JS.data</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-07-31T20:13:32Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106502#p106502</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106499#p106499" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong><br />Cложно!<br />Но все ровно спасибо!!!</p><p>А в этом коде где задаются координаты(на какой строке)</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-31T16:46:28Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106499#p106499</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106496#p106496" />
			<content type="html"><![CDATA[<p>С дотой не подскажу.<br />Вот пример с экселом:<br /></p><div class="codebox"><pre><code>#Persistent
code = 
(
var excel=new ActiveXObject(&quot;Excel.Application&quot;);
var ExcelSheet = new ActiveXObject(&quot;Excel.Sheet&quot;);
ExcelSheet.Application.Visible = true;
ExcelSheet.ActiveSheet.Cells(1,1).Value = &quot;Это столбец A, строка 1&quot;;
data = ExcelSheet.ActiveSheet.Cells(1,1).Value;
)

JS := new ActiveScript(&quot;JScript&quot;)
JS.Exec(code)
msgbox % JS.data
return

/*
 *  ActiveScript for AutoHotkey v1.1
 *
 *  Provides an interface to Active Scripting languages like VBScript and JScript,
 *  without relying on Microsoft&#039;s ScriptControl, which is not available to 64-bit
 *  programs.
 *
 *  License: Use, modify and redistribute without limitation, but at your own risk.
 */
class ActiveScript extends ActiveScript._base
{
    __New(Language)
    {
        if this._script := ComObjCreate(Language, ActiveScript.IID)
            this._scriptParse := ComObjQuery(this._script, ActiveScript.IID_Parse)
        if !this._scriptParse
            throw Exception(&quot;Invalid language&quot;, -1, Language)
        this._site := new ActiveScriptSite(this)
        this._SetScriptSite(this._site.ptr)
        this._InitNew()
        this._objects := {}
        this.Error := &quot;&quot;
        this._dsp := this._GetScriptDispatch()  ; Must be done last.
        try
            if this.ScriptEngine() = &quot;JScript&quot;
                this.SetJScript58()
    }

    SetJScript58()
    {
        static IID_IActiveScriptProperty := &quot;{4954E0D0-FBC7-11D1-8410-006008C3FBFC}&quot;
        if !prop := ComObjQuery(this._script, IID_IActiveScriptProperty)
            return false
        VarSetCapacity(var, 24, 0), NumPut(2, NumPut(3, var, &quot;short&quot;) + 6)
        hr := DllCall(NumGet(NumGet(prop+0)+4*A_PtrSize), &quot;ptr&quot;, prop, &quot;uint&quot;, 0x4000
            , &quot;ptr&quot;, 0, &quot;ptr&quot;, &amp;var), ObjRelease(prop)
        return hr &gt;= 0
    }
    
    Eval(Code)
    {
        pvar := NumGet(ComObjValue(arr:=ComObjArray(0xC,1)) + 8+A_PtrSize)
        this._ParseScriptText(Code, 0x20, pvar)  ; SCRIPTTEXT_ISEXPRESSION := 0x20
        return arr[0]
    }
    
    Exec(Code)
    {
        this._ParseScriptText(Code, 0x42, 0)  ; SCRIPTTEXT_ISVISIBLE := 2, SCRIPTTEXT_ISPERSISTENT := 0x40
        this._SetScriptState(2)  ; SCRIPTSTATE_CONNECTED := 2
    }
    
    AddObject(Name, DispObj, AddMembers := false)
    {
        static a, supports_dispatch ; Test for built-in IDispatch support.
            := a := ((a:=ComObjArray(0xC,1))[0]:=[42]) &amp;&amp; a[0][1]=42
        if IsObject(DispObj) &amp;&amp; !(supports_dispatch || ComObjType(DispObj))
            throw Exception(&quot;Adding a non-COM object requires AutoHotkey v1.1.17+&quot;, -1)
        this._objects[Name] := DispObj
        this._AddNamedItem(Name, AddMembers ? 8 : 2)  ; SCRIPTITEM_ISVISIBLE := 2, SCRIPTITEM_GLOBALMEMBERS := 8
    }
    
    _GetObjectUnk(Name)
    {
        return !IsObject(dsp := this._objects[Name]) ? dsp  ; Pointer
            : ComObjValue(dsp) ? ComObjValue(dsp)  ; ComObject
            : &amp;dsp  ; AutoHotkey object
    }
    
    class _base
    {
        __Call(Method, Params*)
        {
            if ObjHasKey(this, &quot;_dsp&quot;)
                try
                    return (this._dsp)[Method](Params*)
                catch e
                    throw Exception(e.Message, -1, e.Extra)
        }
        
        __Get(Property, Params*)
        {
            if ObjHasKey(this, &quot;_dsp&quot;)
                try
                    return (this._dsp)[Property, Params*]
                catch e
                    throw Exception(e.Message, -1, e.Extra)
        }
        
        __Set(Property, Params*)
        {
            if ObjHasKey(this, &quot;_dsp&quot;)
            {
                Value := Params.Pop()
                try
                    return (this._dsp)[Property, Params*] := Value
                catch e
                    throw Exception(e.Message, -1, e.Extra)
            }
        }
    }
    
    _SetScriptSite(Site)
    {
        hr := DllCall(NumGet(NumGet((p:=this._script)+0)+3*A_PtrSize), &quot;ptr&quot;, p, &quot;ptr&quot;, Site)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScript::SetScriptSite&quot;)
    }
    
    _SetScriptState(State)
    {
        hr := DllCall(NumGet(NumGet((p:=this._script)+0)+5*A_PtrSize), &quot;ptr&quot;, p, &quot;int&quot;, State)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScript::SetScriptState&quot;)
    }
    
    _AddNamedItem(Name, Flags)
    {
        hr := DllCall(NumGet(NumGet((p:=this._script)+0)+8*A_PtrSize), &quot;ptr&quot;, p, &quot;wstr&quot;, Name, &quot;uint&quot;, Flags)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScript::AddNamedItem&quot;)
    }
    
    _GetScriptDispatch()
    {
        hr := DllCall(NumGet(NumGet((p:=this._script)+0)+10*A_PtrSize), &quot;ptr&quot;, p, &quot;ptr&quot;, 0, &quot;ptr*&quot;, pdsp)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScript::GetScriptDispatch&quot;)
        return ComObject(9, pdsp, 1)
    }
    
    _InitNew()
    {
        hr := DllCall(NumGet(NumGet((p:=this._scriptParse)+0)+3*A_PtrSize), &quot;ptr&quot;, p)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScriptParse::InitNew&quot;)
    }
    
    _ParseScriptText(Code, Flags, pvarResult)
    {
        VarSetCapacity(excp, 8 * A_PtrSize, 0)
        hr := DllCall(NumGet(NumGet((p:=this._scriptParse)+0)+5*A_PtrSize), &quot;ptr&quot;, p
            , &quot;wstr&quot;, Code, &quot;ptr&quot;, 0, &quot;ptr&quot;, 0, &quot;ptr&quot;, 0, &quot;uptr&quot;, 0, &quot;uint&quot;, 1
            , &quot;uint&quot;, Flags, &quot;ptr&quot;, pvarResult, &quot;ptr&quot;, 0)
        if (hr &lt; 0)
            this._HRFail(hr, &quot;IActiveScriptParse::ParseScriptText&quot;)
    }
    
    _HRFail(hr, what)
    {
        if e := this.Error
        {
            this.Error := &quot;&quot;
            throw Exception(&quot;`nError code:`t&quot; this._HRFormat(e.HRESULT)
                . &quot;`nSource:`t`t&quot; e.Source &quot;`nDescription:`t&quot; e.Description
                . &quot;`nLine:`t`t&quot; e.Line &quot;`nColumn:`t`t&quot; e.Column
                . &quot;`nLine text:`t`t&quot; e.LineText, -3)
        }
        throw Exception(what &quot; failed with code &quot; this._HRFormat(hr), -2)
    }
    
    _HRFormat(hr)
    {
        return Format(&quot;0x{1:X}&quot;, hr &amp; 0xFFFFFFFF)
    }
    
    _OnScriptError(err) ; IActiveScriptError err
    {
        VarSetCapacity(excp, 8 * A_PtrSize, 0)
        DllCall(NumGet(NumGet(err+0)+3*A_PtrSize), &quot;ptr&quot;, err, &quot;ptr&quot;, &amp;excp) ; GetExceptionInfo
        DllCall(NumGet(NumGet(err+0)+4*A_PtrSize), &quot;ptr&quot;, err, &quot;uint*&quot;, srcctx, &quot;uint*&quot;, srcline, &quot;int*&quot;, srccol) ; GetSourcePosition
        DllCall(NumGet(NumGet(err+0)+5*A_PtrSize), &quot;ptr&quot;, err, &quot;ptr*&quot;, pbstrcode) ; GetSourceLineText
        code := StrGet(pbstrcode, &quot;UTF-16&quot;), DllCall(&quot;OleAut32\SysFreeString&quot;, &quot;ptr&quot;, pbstrcode)
        if fn := NumGet(excp, 6 * A_PtrSize) ; pfnDeferredFillIn
            DllCall(fn, &quot;ptr&quot;, &amp;excp)
        wcode := NumGet(excp, 0, &quot;ushort&quot;)
        hr := wcode ? 0x80040200 + wcode : NumGet(excp, 7 * A_PtrSize, &quot;uint&quot;)
        this.Error := {HRESULT: hr, Line: srcline, Column: srccol, LineText: code}
        static Infos := &quot;Source,Description,HelpFile&quot;
        Loop Parse, % Infos, `,
            if pbstr := NumGet(excp, A_Index * A_PtrSize)
                this.Error[A_LoopField] := StrGet(pbstr, &quot;UTF-16&quot;), DllCall(&quot;OleAut32\SysFreeString&quot;, &quot;ptr&quot;, pbstr)
        return 0x80004001 ; E_NOTIMPL (let Exec/Eval get a fail result)
    }
    
    __Delete()
    {
        if this._script
        {
            DllCall(NumGet(NumGet((p:=this._script)+0)+7*A_PtrSize), &quot;ptr&quot;, p)  ; Close
            ObjRelease(this._script)
        }
        if this._scriptParse
            ObjRelease(this._scriptParse)
    }
    
    static IID := &quot;{BB1A2AE1-A4F9-11cf-8F20-00805F2CD064}&quot;
    static IID_Parse := A_PtrSize=8 ? &quot;{C7EF7658-E1EE-480E-97EA-D52CB4D76D17}&quot; : &quot;{BB1A2AE2-A4F9-11cf-8F20-00805F2CD064}&quot;
}

class ActiveScriptSite
{
    __New(Script)
    {
        ObjSetCapacity(this, &quot;_site&quot;, 3 * A_PtrSize)
        NumPut(&amp;Script
        , NumPut(ActiveScriptSite._vftable(&quot;_vft_w&quot;, &quot;31122&quot;, 0x100)
        , NumPut(ActiveScriptSite._vftable(&quot;_vft&quot;, &quot;31125232211&quot;, 0)
            , this.ptr := ObjGetAddress(this, &quot;_site&quot;))))
    }
    
    _vftable(Name, PrmCounts, EIBase)
    {
        if p := ObjGetAddress(this, Name)
            return p
        ObjSetCapacity(this, Name, StrLen(PrmCounts) * A_PtrSize)
        p := ObjGetAddress(this, Name)
        Loop Parse, % PrmCounts
        {
            cb := RegisterCallback(&quot;_ActiveScriptSite&quot;, &quot;F&quot;, A_LoopField, A_Index + EIBase)
            NumPut(cb, p + (A_Index-1) * A_PtrSize)
        }
        return p
    }
}

_ActiveScriptSite(this, a1:=0, a2:=0, a3:=0, a4:=0, a5:=0)
{
    Method := A_EventInfo &amp; 0xFF
    if A_EventInfo &gt;= 0x100  ; IActiveScriptSiteWindow
    {
        if Method = 4  ; GetWindow
        {
            NumPut(0, a1+0) ; *phwnd := 0
            return 0 ; S_OK
        }
        if Method = 5  ; EnableModeless
        {
            return 0 ; S_OK
        }
        this -= A_PtrSize     ; Cast to IActiveScriptSite
    }
    ;else: IActiveScriptSite
    if Method = 1  ; QueryInterface
    {
        iid := _AS_GUIDToString(a1)
        if (iid = &quot;{00000000-0000-0000-C000-000000000046}&quot;  ; IUnknown
         || iid = &quot;{DB01A1E3-A42B-11cf-8F20-00805F2CD064}&quot;) ; IActiveScriptSite
        {
            NumPut(this, a2+0)
            return 0 ; S_OK
        }
        if (iid = &quot;{D10F6761-83E9-11cf-8F20-00805F2CD064}&quot;) ; IActiveScriptSiteWindow
        {
            NumPut(this + A_PtrSize, a2+0)
            return 0 ; S_OK
        }
        NumPut(0, a2+0)
        return 0x80004002 ; E_NOINTERFACE
    }
    if Method = 5  ; GetItemInfo
    {
        a1 := StrGet(a1, &quot;UTF-16&quot;)
        , (a3 &amp;&amp; NumPut(0, a3+0))  ; *ppiunkItem := NULL
        , (a4 &amp;&amp; NumPut(0, a4+0))  ; *ppti := NULL
        if (a2 &amp; 1) ; SCRIPTINFO_IUNKNOWN
        {
            if !(unk := Object(NumGet(this + A_PtrSize*2))._GetObjectUnk(a1))
                return 0x8002802B ; TYPE_E_ELEMENTNOTFOUND
            ObjAddRef(unk), NumPut(unk, a3+0)
        }
        return 0 ; S_OK
    }
    if Method = 9  ; OnScriptError
        return Object(NumGet(this + A_PtrSize*2))._OnScriptError(a1)
    
    ; AddRef and Release don&#039;t do anything because we want to avoid circular references.
    ; The site and IActiveScript are both released when the AHK script releases its last
    ; reference to the ActiveScript object.
    
    ; All of the other methods don&#039;t require implementations.
    return 0x80004001 ; E_NOTIMPL
}

_AS_GUIDToString(pGUID)
{
    VarSetCapacity(String, 38*2)
    DllCall(&quot;ole32\StringFromGUID2&quot;, &quot;ptr&quot;, pGUID, &quot;str&quot;, String, &quot;int&quot;, 39)
    return String
} </code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-07-31T11:32:55Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106496#p106496</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106495#p106495" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong><br />Извините за наглость, но можно 1 пример, как получать данные по API из доты?<br />Я разобрался как получать из ВК по примеру <strong>ghost29</strong>&#039;а, вот хочу разораться на таком примере!<br />Я его код вставил и он у меня заработал, я просто начал менять методы и параметры! Тем самым разобрался!</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-31T05:38:40Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106495#p106495</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106493#p106493" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>на javascript это можно сделать, а можноли на ahk?</p></blockquote></div><p>На ahk можно выполнять Jscript.<br /><a href="http://forum.script-coding.com/viewtopic.php?id=9101">http://forum.script-coding.com/viewtopic.php?id=9101</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-07-30T22:30:01Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106493#p106493</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106488#p106488" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />Спасибо!<br />Ну так что? Можно чтонибуть сделать, чтобы моя программа могла работать с API доты?</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-30T19:00:18Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106488#p106488</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106482#p106482" />
			<content type="html"><![CDATA[<p>Перенёс.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-07-30T16:46:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106482#p106482</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106480#p106480" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />Извините пожалуйста, а можно тему перенести или мне новую создавать в другом разделе?</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-30T15:47:05Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106480#p106480</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106453#p106453" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>minesemka пишет:</cite><blockquote><p>Которая будет пользоваться API доты</p></blockquote></div><p><strong>minesemka</strong>, вы знаете, где у нас ветка по играм?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-07-29T11:11:51Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106453#p106453</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106449#p106449" />
			<content type="html"><![CDATA[<p><strong>ghost29</strong><br />Спасибо, большое дело в том что я хочу сделать программу.<br />Которая будет пользоваться API доты (например на javascript это можно сделать, а можноли на ahk?)<br /><a href="https://developer.valvesoftware.com/wiki/Dota_2_Workshop_Tools/Panorama/Javascript/API#">https://developer.valvesoftware.com/wik … cript/API#</a><br />P.S. другие я языки пока нихочу изучать т.к. только начал понимать ahk!</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-29T04:38:21Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106449#p106449</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106431#p106431" />
			<content type="html"><![CDATA[<p>Получение аудиозаписей<br /></p><div class="codebox"><pre><code>
WebRequest := ComObjCreate(&quot;WinHttp.WinHttpRequest.5.1&quot;)
WebRequest.Open(&quot;GET&quot;, &quot;https://api.vk.com/method/audio.get?owner_id=&quot; ID &quot; &amp;count=&quot; count &quot;&amp;access_token=&quot; token, false)
WebRequest.Send()
j := % WebRequest.ResponseText ; весь текст
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ghost29]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33044</uri>
			</author>
			<updated>2016-07-28T13:52:04Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106431#p106431</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106418#p106418" />
			<content type="html"><![CDATA[<p>С вконтакте может:<br /></p><div class="quotebox"><blockquote><p>Чтобы обратиться к методу API ВКонтакте, Вам необходимо выполнить POST или GET запрос такого вида:<br />https://api.vk.com/method/METHOD_NAME?PARAMETERS&amp;access_token=ACCESS_TOKEN&amp;v=V</p></blockquote></div><p><a href="https://new.vk.com/dev/api_requests">https://new.vk.com/dev/api_requests</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-07-28T11:55:38Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106418#p106418</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106417#p106417" />
			<content type="html"><![CDATA[<p>Вообще с api может, конкретно про ВКонтакте не знаю.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-07-28T11:36:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106417#p106417</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: работа с API]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=106412#p106412" />
			<content type="html"><![CDATA[<p>Здравствуйте, подскажите, а может ли язык AutoHotKey работать с API? Например: вконтакте?<br />Если нет, то подскажите самый-самый лёгкий язык, который может работать с API! <br />Заранее спасибо.</p>]]></content>
			<author>
				<name><![CDATA[minesemka]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33949</uri>
			</author>
			<updated>2016-07-28T08:48:11Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=106412#p106412</id>
		</entry>
</feed>
