Skydrive picture

No screenshot
Description
I have some pictures on https://skydrive.live.com, drive is 7 GB high for free users.
So i want add pictures from my skydrive folder to be shown in phpBB forum.

Make account there, upload picture on drive, click on it. On Embeded tab you will see HTML code for embeding picture on webpage.

From that code you need following values:
  1. CID
  2. RESID
  3. AUTHKEY
  4. WIDTH
  5. HEIGHT

How to find, do following. From embeded html code find:
CID - begin after "cid=" ended with &
RESID - begin with value like cid, but you need numbers after second "cid" begining with "%" ended with &
AUTHKEY - begin after "autkey=" ended with quotas
For WIDTH - just copy value between quotas
For HEIGHT - just copy value between quotas

For example, embeded html code:

Code: Select all

<iframe src="https://skydrive.live.com/embed?cid=F7325795977E0A68&resid=F7325795977E0A68%21182&authkey=ALcWAPdbSsKVeRE" width="318" height="179" frameborder="0" scrolling="no"></iframe>


BBCode usage

Code: Select all

[SkyPicture]{IDENTIFIER1},{IDENTIFIER2},{SIMPLETEXT},{IDENTIFIER3},{IDENTIFIER4}[/SkyPicture]


CID == {IDENTIFIER1}
RESID == {IDENTIFIER2}
AUTKEY == {SIMPLETEXT}
WIDTH == {IDENTIFIER3}
HEIGHT == {IDENTIFIER4}

HTML replacement

Code: Select all

<iframe src="https://skydrive.live.com/embed?cid={IDENTIFIER1}&resid={IDENTIFIER1}%{IDENTIFIER2}&authkey={SIMPLETEXT}" width="{IDENTIFIER3}" height="{IDENTIFIER4}" frameborder="0" scrolling="no"></iframe>


For example:

Code: Select all

[skypicture]F7325795977E0A68,21182,ALcWAPdbSsKVeRE,318,179[/skypicture]
  • Author shark.hr
  • Last updated Tue Jan 22, 2013 6:14 pm
  • Rating
    (0)
  • Categories Images

Public performance attribution has been waived.

Settings

BBCode Usage: Select all
[SkyPicture]{IDENTIFIER1},{IDENTIFIER2},{SIMPLETEXT},{IDENTIFIER3},{IDENTIFIER4}[/SkyPicture]

HTML Replacement: Select all
<iframe src="https://skydrive.live.com/embed?cid={IDENTIFIER1}&resid={IDENTIFIER1}%{IDENTIFIER2}&authkey={SIMPLETEXT}" width="{IDENTIFIER3}" height="{IDENTIFIER4}" frameborder="0" scrolling="no"></iframe>

Help Line: Select all
[skypicture]cid,resid,authkey,width,height[/skypicture]
  • Revisions
    Version
    phpBB Version(s)
  • SkyPicture
    1.0
    3.0.x
    Validation time: Jan 22, 2013 6:14 pm

    BBCode Usage: Select all
    [SkyPicture]{IDENTIFIER1},{IDENTIFIER2},{SIMPLETEXT},{IDENTIFIER3},{IDENTIFIER4}[/SkyPicture]

    HTML Replacement: Select all
    <iframe src="https://skydrive.live.com/embed?cid={IDENTIFIER1}&resid={IDENTIFIER1}%{IDENTIFIER2}&authkey={SIMPLETEXT}" width="{IDENTIFIER3}" height="{IDENTIFIER4}" frameborder="0" scrolling="no"></iframe>

    Help Line: Select all
    [skypicture]cid,resid,authkey,width,height[/skypicture]