{"id":1002,"date":"2013-02-21T12:46:59","date_gmt":"2013-02-21T12:46:59","guid":{"rendered":"http:\/\/frank-it-beratung.com\/blog\/?p=1002"},"modified":"2013-02-27T10:05:37","modified_gmt":"2013-02-27T10:05:37","slug":"tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1","status":"publish","type":"post","link":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/","title":{"rendered":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1)"},"content":{"rendered":"<p>Eigentlich bin ich kein gro\u00dfer Freund von Visual Basic, aber aufgrund vielfachen Wunschs habe ich hier ein kleines Tutorial geschrieben, wie man mit VB ein Event mit Foto erstellt.<\/p>\n<p>1. Vorbereitung: App anlegen und Access-Token generieren &#8211; wie ich das z. B. <a title=\"Tutorial: Ein Facebook Pinnwandeintrag mit Visual Basic oder C# (Teil 1)\" href=\"http:\/\/frank-it-beratung.com\/blog\/2010\/12\/10\/tutorial-ein-facebook-pinnwandeintrag-mit-visual-basic-oder-c-teil-1\/\">hier<\/a> beschrieben habe (Punkt 1.-5.)<\/p>\n<p>2. Als n\u00e4chstes sollte folgendes Formular angelegt werden (in meinem Beispiel mit Visual Studio Express 2010):<\/p>\n<p><a href=\"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png\"><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"1003\" data-permalink=\"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/bild1-8\/\" data-orig-file=\"https:\/\/frank-it-projekte.de\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png\" data-orig-size=\"444,256\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}\" data-image-title=\"Bild1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/frank-it-projekte.de\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png\" class=\"alignnone size-full wp-image-1003\" alt=\"Bild1\" src=\"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png\" width=\"444\" height=\"256\" srcset=\"https:\/\/frank-it-projekte.de\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png 444w, https:\/\/frank-it-projekte.de\/blog\/wp-content\/uploads\/2013\/02\/Bild1-300x172.png 300w\" sizes=\"auto, (max-width: 444px) 100vw, 444px\" \/><\/a><\/p>\n<p>Hinweis: F\u00fcr die zwei DateTimePicker verwende ich Format:Custom und dann in CustomFormat: &#8222;yyyy-MM-dd HH:mm&#8220;<\/p>\n<p><!--more--><\/p>\n<p>3. So sieht der Code f\u00fcr den Button aus:<\/p>\n<pre>Dim Nachricht, Antwort As Byte()\r\nDim AccessToken As String = \"...\"\r\nDim StartZeit, EndZeit As String\r\n\r\n' Erstellt ein Event f\u00fcr den User des Access-Tokens\r\nDim GraphURL As String = _\r\n  \"https:\/\/graph.facebook.com\/me\/events\"\r\n\r\n'WebClient anlegen\r\nDim myWebClient As New Net.WebClient\r\n\r\n'Except100 ausschalten, sonst gibt es u. U. Fehlermeldungen\r\nNet.ServicePointManager.Expect100Continue = False\r\n\r\n'Die Start- und Endzeit richtig formatieren...\r\nStartZeit = DateTimePickerStartDatum.Text\r\nEndZeit = DateTimePickerEndDatum.Text\r\n'statt dem Leerzeichen zwischen Datum und \r\n'Uhrzeit steht ein \"T\"\r\nStartZeit = Replace(StartZeit, \" \", \"T\")\r\nEndZeit = Replace(EndZeit, \" \", \"T\")\r\n'au\u00dferdem muss die Timezone angeh\u00e4ngt werden, also\r\n'+0100 - das \"+\" wird URL-codiert (%2B)\r\nStartZeit = StartZeit &amp; \"%2B0100\"\r\nEndZeit = EndZeit &amp; \"%2B0100\"\r\n\r\nNachricht = Encoding.UTF8.GetBytes(\r\n  \"name=\" &amp; TextBoxVeranstaltung.Text _\r\n  &amp; \"&amp;description=\" &amp; TextBoxBeschreibung.Text _\r\n  &amp; \"&amp;start_time=\" &amp; StartZeit _\r\n  &amp; \"&amp;end_time=\" &amp; EndZeit _\r\n  &amp; \"&amp;privacy=OPEN\" _\r\n  &amp; \"&amp;access_token=\" &amp; AccessToken)\r\n\r\nTry\r\n  Antwort = myWebClient.UploadData(GraphURL, Nachricht)\r\n  'Erfolgsmeldung (ID des Posts) in JSON\r\n  'MsgBox(System.Text.Encoding.ASCII.GetString(Antwort))\r\n  MsgBox(\"Event Erfogreich gepostet!\")\r\nCatch ex As Exception\r\n  MsgBox(\"Fehler: \" &amp; ex.Message)\r\n  Return\r\nEnd Try\r\n\r\n'jetzt die ID des neuen Events auslesen...\r\n\r\n'optimalerweise k\u00f6nnte man JSON deserialisieren, wie\r\n'ich das in meinem Blog beschrieben habe:\r\n'http:\/\/bit.ly\/YoDmgc\r\n\r\n'schneller geht es in diesem Fall mit\r\n'einem regul\u00e4ren Ausdruck - einfach\r\n'die Zahl mit \\d extrahieren:\r\n\r\nDim pattern As String = \"\\d{1,}\"\r\nDim matches As MatchCollection\r\nDim defaultRegex As New Regex(pattern)\r\nmatches = defaultRegex.Matches(\r\n  System.Text.Encoding.ASCII.GetString(Antwort))\r\n\r\nIf matches.Count &gt; 0 Then\r\n  'Erfolg - EventID in Form schreiben\r\n  LabelEventID.Text = matches(0).Value\r\nElse\r\n  'Fehler\r\n  MsgBox(\"Keine ID in Antwort gefunden: \" _\r\n    &amp; System.Text.Encoding.ASCII.GetString(Antwort))\r\n  Return\r\nEnd If\r\n\r\n'jetzt das Bild uploaden...\r\nGraphURL = \"https:\/\/graph.facebook.com\/\" _\r\n  &amp; LabelEventID.Text _\r\n  &amp; \"\/picture?access_token=\" _\r\n  &amp; AccessToken\r\n\r\nTry\r\n  Antwort = myWebClient.UploadFile(GraphURL, TextBoxBild.Text)\r\n  'MsgBox(System.Text.Encoding.ASCII.GetString(Antwort))\r\n  MsgBox(\"Bild erfogreich gepostet!\")\r\nCatch ex As Exception\r\n  MsgBox(\"Fehler: \" &amp; ex.Message)\r\nEnd Try<\/pre>\n<p>Tipps:<\/p>\n<ul>\n<li>Importiert werden muss &#8222;System.Text&#8220; und &#8222;System.Text.RegularExpressions&#8220;<\/li>\n<li>Noch sch\u00f6ner ist ein asynchroner Upload f\u00fcr das Bild, den ich <a title=\"Facebook API Tutorial: Mit C# ein Foto uploaden (Tutorial Teil 4)\" href=\"http:\/\/frank-it-beratung.com\/blog\/2011\/11\/14\/tutorial-mit-c-oder-visual-basic-ein-foto-uploaden-facebook-api-tutorial-teil-4\/\">hier<\/a> beschrieben habe.<\/li>\n<li>Bestimmte Sonderzeichen und Umlaute machen in der Beschreibung und im Namen u. U. Probleme &#8211; eine L\u00f6sung dazu habe ich <a title=\"OAuth Probleme mit Umlauten: L\u00f6sungen f\u00fcr PHP, Perl, C#, VB\" href=\"http:\/\/frank-it-beratung.com\/blog\/2011\/07\/16\/oauth-probleme-mit-umlauten-losungen-fur-php-perl-c\/\">hier<\/a> beschrieben.<\/li>\n<\/ul>\n<p>Im n\u00e4chsten Teil werde ich noch kurz erkl\u00e4ren, wie man hiermit auch gleich alle seine Freunde einladen kann.<\/p>\n<p>P.S.<\/p>\n<p>Probleme? Fragen? Anregungen? Ich helfe jederzeit und gerne\u00a0 \u2013 einfach einen Kommentar oder Mail schreiben, die Antwort kommt schnellstm\u00f6glich. Unternehmen, die Unterst\u00fctzung, Beratung oder Schulung bei der API- oder Webprogrammierung, der Social-Media-Entwicklung oder dem Social-Media-Management ben\u00f6tigen finden zudem entsprechende Angebote meiner Firma auf der Website <a href=\"http:\/\/www.Frank-IT-Beratung.de\" target=\"_blank\">www.Frank-IT-Beratung.de<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Eigentlich bin ich kein gro\u00dfer Freund von Visual Basic, aber aufgrund vielfachen Wunschs habe ich hier ein kleines Tutorial geschrieben, wie man mit VB ein Event mit Foto erstellt. 1. Vorbereitung: App anlegen und Access-Token generieren &#8211; wie ich das &hellip; <a href=\"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/\">Weiterlesen <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[4,8,11,16,18,21],"tags":[],"class_list":["post-1002","post","type-post","status-publish","format-standard","hentry","category-api","category-facebook","category-graph-api","category-programmierung","category-social-networks","category-visual-basic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \/\/ Frank-IT-Beratung<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \/\/ Frank-IT-Beratung\" \/>\n<meta property=\"og:description\" content=\"Eigentlich bin ich kein gro\u00dfer Freund von Visual Basic, aber aufgrund vielfachen Wunschs habe ich hier ein kleines Tutorial geschrieben, wie man mit VB ein Event mit Foto erstellt. 1. Vorbereitung: App anlegen und Access-Token generieren &#8211; wie ich das &hellip; Weiterlesen &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Socialweb Dev-Blog \/\/ Frank-IT-Beratung\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-21T12:46:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-02-27T10:05:37+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png\" \/>\n<meta name=\"author\" content=\"Simon A. Frank\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simon A. Frank\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/\"},\"author\":{\"name\":\"Simon A. Frank\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#\\\/schema\\\/person\\\/e31d0c55b9277739ef6c87d5e7bb47a2\"},\"headline\":\"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1)\",\"datePublished\":\"2013-02-21T12:46:59+00:00\",\"dateModified\":\"2013-02-27T10:05:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/\"},\"wordCount\":219,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#\\\/schema\\\/person\\\/e31d0c55b9277739ef6c87d5e7bb47a2\"},\"image\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/frank-it-beratung.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/Bild1.png\",\"articleSection\":[\"API\",\"Facebook\",\"Graph API\",\"Programmierung\",\"Social Networks\",\"Visual Basic\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/\",\"url\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/\",\"name\":\"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \\\/\\\/ Frank-IT-Beratung\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/frank-it-beratung.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/Bild1.png\",\"datePublished\":\"2013-02-21T12:46:59+00:00\",\"dateModified\":\"2013-02-27T10:05:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#primaryimage\",\"url\":\"http:\\\/\\\/frank-it-beratung.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/Bild1.png\",\"contentUrl\":\"http:\\\/\\\/frank-it-beratung.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/Bild1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/2013\\\/02\\\/21\\\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/\",\"name\":\"Socialweb Dev-Blog \\\/\\\/ Frank-IT-Beratung\",\"description\":\"Social-Media und Web-Entwicklung: Tutorials und Tipps von Simon A. Frank\",\"publisher\":{\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#\\\/schema\\\/person\\\/e31d0c55b9277739ef6c87d5e7bb47a2\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/#\\\/schema\\\/person\\\/e31d0c55b9277739ef6c87d5e7bb47a2\",\"name\":\"Simon A. Frank\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/frank-it-beratung.de\\\/blog\\\/wp-content\\\/uploads\\\/2009\\\/09\\\/simon200x200.jpg\",\"url\":\"https:\\\/\\\/frank-it-beratung.de\\\/blog\\\/wp-content\\\/uploads\\\/2009\\\/09\\\/simon200x200.jpg\",\"contentUrl\":\"https:\\\/\\\/frank-it-beratung.de\\\/blog\\\/wp-content\\\/uploads\\\/2009\\\/09\\\/simon200x200.jpg\",\"width\":200,\"height\":200,\"caption\":\"Simon A. Frank\"},\"logo\":{\"@id\":\"https:\\\/\\\/frank-it-beratung.de\\\/blog\\\/wp-content\\\/uploads\\\/2009\\\/09\\\/simon200x200.jpg\"},\"url\":\"https:\\\/\\\/frank-it-projekte.de\\\/blog\\\/author\\\/sfrank\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \/\/ Frank-IT-Beratung","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/","og_locale":"de_DE","og_type":"article","og_title":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \/\/ Frank-IT-Beratung","og_description":"Eigentlich bin ich kein gro\u00dfer Freund von Visual Basic, aber aufgrund vielfachen Wunschs habe ich hier ein kleines Tutorial geschrieben, wie man mit VB ein Event mit Foto erstellt. 1. Vorbereitung: App anlegen und Access-Token generieren &#8211; wie ich das &hellip; Weiterlesen &rarr;","og_url":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/","og_site_name":"Socialweb Dev-Blog \/\/ Frank-IT-Beratung","article_published_time":"2013-02-21T12:46:59+00:00","article_modified_time":"2013-02-27T10:05:37+00:00","og_image":[{"url":"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png","type":"","width":"","height":""}],"author":"Simon A. Frank","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Simon A. Frank","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#article","isPartOf":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/"},"author":{"name":"Simon A. Frank","@id":"https:\/\/frank-it-projekte.de\/blog\/#\/schema\/person\/e31d0c55b9277739ef6c87d5e7bb47a2"},"headline":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1)","datePublished":"2013-02-21T12:46:59+00:00","dateModified":"2013-02-27T10:05:37+00:00","mainEntityOfPage":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/"},"wordCount":219,"commentCount":3,"publisher":{"@id":"https:\/\/frank-it-projekte.de\/blog\/#\/schema\/person\/e31d0c55b9277739ef6c87d5e7bb47a2"},"image":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#primaryimage"},"thumbnailUrl":"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png","articleSection":["API","Facebook","Graph API","Programmierung","Social Networks","Visual Basic"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/","url":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/","name":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1) - Socialweb Dev-Blog \/\/ Frank-IT-Beratung","isPartOf":{"@id":"https:\/\/frank-it-projekte.de\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#primaryimage"},"image":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#primaryimage"},"thumbnailUrl":"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png","datePublished":"2013-02-21T12:46:59+00:00","dateModified":"2013-02-27T10:05:37+00:00","breadcrumb":{"@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#primaryimage","url":"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png","contentUrl":"http:\/\/frank-it-beratung.com\/blog\/wp-content\/uploads\/2013\/02\/Bild1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/frank-it-projekte.de\/blog\/2013\/02\/21\/tutorial-mit-visual-basic-ein-facebook-event-mit-foto-erstellen-teil-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/frank-it-projekte.de\/blog\/"},{"@type":"ListItem","position":2,"name":"Tutorial: Mit Visual Basic ein Facebook-Event mit Foto-Upload erstellen (Teil 1)"}]},{"@type":"WebSite","@id":"https:\/\/frank-it-projekte.de\/blog\/#website","url":"https:\/\/frank-it-projekte.de\/blog\/","name":"Socialweb Dev-Blog \/\/ Frank-IT-Beratung","description":"Social-Media und Web-Entwicklung: Tutorials und Tipps von Simon A. Frank","publisher":{"@id":"https:\/\/frank-it-projekte.de\/blog\/#\/schema\/person\/e31d0c55b9277739ef6c87d5e7bb47a2"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/frank-it-projekte.de\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":["Person","Organization"],"@id":"https:\/\/frank-it-projekte.de\/blog\/#\/schema\/person\/e31d0c55b9277739ef6c87d5e7bb47a2","name":"Simon A. Frank","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/frank-it-beratung.de\/blog\/wp-content\/uploads\/2009\/09\/simon200x200.jpg","url":"https:\/\/frank-it-beratung.de\/blog\/wp-content\/uploads\/2009\/09\/simon200x200.jpg","contentUrl":"https:\/\/frank-it-beratung.de\/blog\/wp-content\/uploads\/2009\/09\/simon200x200.jpg","width":200,"height":200,"caption":"Simon A. Frank"},"logo":{"@id":"https:\/\/frank-it-beratung.de\/blog\/wp-content\/uploads\/2009\/09\/simon200x200.jpg"},"url":"https:\/\/frank-it-projekte.de\/blog\/author\/sfrank\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p2dxcw-ga","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/posts\/1002","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/comments?post=1002"}],"version-history":[{"count":12,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/posts\/1002\/revisions"}],"predecessor-version":[{"id":1032,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/posts\/1002\/revisions\/1032"}],"wp:attachment":[{"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/media?parent=1002"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/categories?post=1002"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/frank-it-projekte.de\/blog\/wp-json\/wp\/v2\/tags?post=1002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}