How to /give tipped arrows in Windows-10 edition [duplicate]

I am trying to make a feature in my survival minigame where every once and a while a random player is teleported to a hidden room via command blocks. Inside, players will be allowed to hit one button, then be teleported back to the main arena. Each button gives you different items, and one I want to have is to have it give you tipped arrows (like harming potion arrows). But, my command isn't working. Here is what I got:

/give @p arrow 1 0 {Potion:"harming"}

I found the last part here. What is wrong with the command? As I said, I am on Windows-10 version (v1.1.0).


/give @p minecraft:tipped_arrow 1 0 {Potion:"minecraft:harming"}

As shown in your link, the item name is tipped_arrow.

EDIT: Wait, just saw you were on Windows 10 edition. The Windows 10 give command doesn't support data tags, except (recently) for "can place on" and "can destroy". I don't know if there's another way to get what you want.


I figured it out!!!! This is a command to give 1 arrow of leaping!!

/give @p arrow 1 10 = Arrow of Leaping
/give @p arrow 1 28 = Arrow of Poison 

You could make these components on these Example: /give @p potion 1 28 = Potion of Poison And that's it

The last number determines what potion is applied to it.